Skip to content

VitoKaryadi/auth-system

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 

Repository files navigation

Auth Key

AuthKey Logo

AuthKey is a security system designed for your website needs, AuthKey is created using PHP!

  • Easy AuthKey application.
  • An open source programming project
  • User data is properly encrypted, passwords cannot be seen by admin
  • AuthKey does not retrieve data other than the data requested in the form and the user has agreed

AuthKey System

How to install AuthKey (Windows)

  1. Download/Clone this repository Download Here!
  2. Place AuthKey Folder in Directory C:\xampp\htdocs\AuthKey
  3. Start Apache & MySQL on XAMPP
  4. Open phpMyAdmin http://127.0.0.1/phpmyadmin
  5. Create new database; give name authsystem
  6. Go to SQL Menu, then create new Table with this query:
      CREATE TABLE IF NOT EXISTS `users` (
       `id` int(11) NOT NULL AUTO_INCREMENT,
       `displayname` varchar(50) NOT NULL,
       `username` varchar(50) NOT NULL,
       `email` varchar(50) NOT NULL,
       `password` varchar(50) NOT NULL,
       `create_datetime` datetime NOT NULL,
       PRIMARY KEY (`id`)
      );

    SQL Query

  7. Open Browser then browse http://127.0.0.1/AuthKey

Report Problem

Bugs | Problem | Suggestion Coming Soon!

Donate

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published