I just started c++ yesterday and I practiced making a code that lets you choose a username and then enter a password and confirm it
but thats all there is to it
does anyone have any suggestions on how i could improve this? or could anyone possibly show me how to make it remember multiple usernames and passwords at once? like so a bunch of people could have their own login info,
and i know it probably sucks, im really new to this and its pretty confusing stuff to me :p
i didn't read the source, and not responsible of the circumstances of using it.
you should store your passwords in a file and encrypted by your program.
when a login attempt occurs, your program hashes the input password and compares it with the hash stored in the file.
if there's a match, then the user is allowed access.
well I wasnt planning on using it for any actual login stuff, it was just to practice a little, but thank you i will definately check those both out and see if they can help! thanks :D