Skip to content
This repository was archived by the owner on Nov 10, 2021. It is now read-only.
/ simple-login Public archive

Basic login system with password hasing and salt

Notifications You must be signed in to change notification settings

J0ker98/simple-login

Repository files navigation

Simple Login

Basic login system with password hasing and salt

  • Setup database connection info in config.ini.php
  • Run the following SQL query to create members database table:
CREATE TABLE IF NOT EXISTS members (
   id VARCHAR(13) NOT NULL,
   user VARCHAR(25) NOT NULL,
   password TEXT NOT NULL,
   name TEXT NOT NULL,
   token TEXT,
   PRIMARY KEY (id)
) ENGINE=INNODB

About

Basic login system with password hasing and salt

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages