fixed spelling

This commit is contained in:
114465 2024-02-07 10:56:45 -05:00
parent 0eae6b7c20
commit b728c4eacb
2 changed files with 22 additions and 4 deletions

View File

@ -10,9 +10,9 @@ Creds:
There are two classes one stores the correct pre hashed creds and another just named main that takes a user input username and password, hashes them then compares the hashes with the correct hashes.
## Future improvemnts
## Future improvements
* The password field is currently displayed in plain text this is less than ideal for a password field so I intend to make a html or swing frontend for this program.
* Currently this doesn't do anything other than display a message but this could be intigrated into other programs
* Split the classes into seprate files so that one file stores the hashes seprate from the login action
* The password field is currently displayed in plain text this is less than ideal for a password field so I intend to make a HTML or swing front end for this program.
* Currently this doesn't do anything other than display a message but this could be integrated into other programs
* Split the classes into separate files so that one file stores the hashes separate from the login action
* Add a Dockerfile to compile the program

18
java-login/README.md.bak Normal file
View File

@ -0,0 +1,18 @@
## Java login
This is a basic cli java program that acts as a login screen.
--
Creds:
username: user
password: pass
## How it works
There are two classes one stores the correct pre hashed creds and another just named main that takes a user input username and password, hashes them then compares the hashes with the correct hashes.
## Future improvemnts
* The password field is currently displayed in plain text this is less than ideal for a password field so I intend to make a html or swing frontend for this program.
* Currently this doesn't do anything other than display a message but this could be intigrated into other programs
* Split the classes into seprate files so that one file stores the hashes seprate from the login action
* Add a Dockerfile to compile the program