https://github.com/reachvivek/login-system
A Complete User Login System With User Registration, Verification And Forgot Password Option.
https://github.com/reachvivek/login-system
composer html javascript jquery php phpmailer sql swifmailer
Last synced: 6 months ago
JSON representation
A Complete User Login System With User Registration, Verification And Forgot Password Option.
- Host: GitHub
- URL: https://github.com/reachvivek/login-system
- Owner: reachvivek
- Created: 2019-08-23T07:41:22.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-31T13:57:52.000Z (over 6 years ago)
- Last Synced: 2025-06-02T10:04:10.910Z (7 months ago)
- Topics: composer, html, javascript, jquery, php, phpmailer, sql, swifmailer
- Language: PHP
- Homepage:
- Size: 2.69 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Login-System
A Complete User Login System with User Registration, Verification and Forgot Password Option.
-> Create a database named "user-verification" in your phpmyadmin.
-> Create table "users" with following columns "user_id", "name", "email", "verified", "token" and "password" with properties "int", "varchar", "varchar", "tinyint", "varchar", and "varchar".
**NOTE: "user_id" has the attribute AUTO INCREMENT and is to be set as the PRIMARY KEY. "email" has the attribute UNIQUE.**
-> Create table "resetpwd" with following columns "resetId", "resetEmail", "resetSelector", "resetToken" and "resetExpires" with properties "int", "varchar", "varchar", "varchar", and "varchar".
**NOTE: "resetId" has the attribute AUTO INCREMENT and is to be set as the PRIMARY KEY.**
-> Go to Config folder and update the "constants.php" file by editing the DB HOST, USER, NAME, PASS, EMAIL, EMAIL PASS with your localhost and email specific values




Good Time Ahead!