Skip to content

ConnorC18/PHP-Cookies-Authentication

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHP Cookies Authentication

Installation

  • Download the PHP Cookies Authentication
  • Add to your project directory

Usage

  • Go to the index.php file. It should look like this: index.php

  • Open Inspect Elements and enter one of developer codes. By default these are Name1-Password1 and Name2-Password2. Then refresh and you will be able to view the page! To 'LogOut' Just clear your cookies or remove the developer code you used from the list.! showcase.gif

  • Built into the index.php is a password generator, thanks to These Guys , Using this you can generate passwords for the developer password for example you could use: YourName-GeneratedPassword

Examples
// generate one password using 5 upper and lower case characters
randomPassword(5,1,"lower_case,upper_case");
 
// generate three passwords using 10 lower case characters and numbers
randomPassword(10,3,"lower_case,numbers");
 
// generate five passwords using 12 lower case and upper case characters, numbers and special symbols
randomPassword(12,5,"lower_case,upper_case,numbers,special_symbols");

You can read more about the password generator Here

Coming Soon

  • Ability to make codes in the browser
  • Ability to remove codes in the browser
  • Button to clear cookie

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published