https://github.com/pfieffer/login_salt
Simple User Authentication using salt encryption in PHP and MySQL database
https://github.com/pfieffer/login_salt
bootstrap php salt user-authentication
Last synced: 2 months ago
JSON representation
Simple User Authentication using salt encryption in PHP and MySQL database
- Host: GitHub
- URL: https://github.com/pfieffer/login_salt
- Owner: pfieffer
- Created: 2017-06-07T06:40:55.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-10-30T06:51:15.000Z (over 7 years ago)
- Last Synced: 2025-09-20T03:34:23.155Z (9 months ago)
- Topics: bootstrap, php, salt, user-authentication
- Language: PHP
- Homepage:
- Size: 285 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# login_salt
> core php, html and bootstrap
Steps to run on your localhost:
1. Download the repo in zip, extract to `C:/xampp/htdocs/`or type `git clone git@github.com:pfieffer/login_salt.git` or `git clone https://github.com/pfieffer/login_salt.git`
2. Go to `localhost/phpmyadmin` on your browser and click import to import the database and table from `C:/xampp/htdocs/login_salt/db/practise.sql`
3. Then open `localhost/login_salt` from your browser.
### Note:
This is just created to show how php `crypt()` function can be used to encrypt passwords for users. This small thing does not guarantee you the most secure web app.