Skip to content

Basic framework for app authentication Includes registration service and storing passwords as hash in DB.

Notifications You must be signed in to change notification settings

ihopethisnamefi/SignInProject

Repository files navigation

SignInProject

Basic framework for app sign in. Allows for user registration and sign in to protected pages. Also Includes storing passwords as hash in DB and checking user input values.

Table in DB is called "users" with 4 fields: fullname username password salt

CREATE TABLE users (fullname varchar(45) NOT NULL, username varchar(45) NOT NULL, password varchar(345) NOT NULL, salt varchar(345) NOT NULL, PRIMARY KEY (username)) ENGINE=InnoDB DEFAULT CHARSET=utf8;

About

Basic framework for app authentication Includes registration service and storing passwords as hash in DB.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages