J0ker98 / simple-login

Basic login system with password hasing and salt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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


Languages

Language:PHP 99.6%Language:Dockerfile 0.2%Language:Shell 0.2%