├── .DS_Store ├── README.md ├── activate.php ├── admin.php ├── code.php ├── css ├── bootstrap.css └── styles.css ├── functions ├── ajaxfunctions.php ├── db.php ├── fetcharray.php ├── functions.php └── init.php ├── includes ├── footer.php ├── header.php └── nav.php ├── index.php ├── js ├── bootstrap.js ├── jquery.js └── scripts.js ├── login.php ├── login_db.sql ├── logout.php ├── recover.php ├── register.php └── reset.php /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mohankrishna225/Email-Verification-SignUp-Form-using-PHP-Mysql/16068c742fe5b05283a5cfd1772c95dd20772b2a/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Email-Verification-SignUp-Form-using-PHP-Mysql 2 | 3 | Email Verification of Signup Forms with Remember Me |Forgot Password |Email-Verification |Admin Page 4 | 5 | Instructions for using this Repo: 6 | 7 | 1.Clone the Repository and Make Sure you have any Local Server installed with PHP version: 7.1.27 and Mysql along with it. 8 | 9 | 2.Import the login_db.sql file into phpmyadmin 10 | 11 | 3.Make sure that databases are correctly imported and change details of the localserver in db.php file. 12 | 13 | 4.Also change the serverpath where you find them in functions.php file 14 | 15 | 5.That's it your done with the configuration to use the repo :) 16 | 17 | -------------------------------------------------------------------------------- /activate.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |