I would like to create a login system using python.
This is a small project that I am doing so that I could get a grip on python and eventually send this over to a webpage that I am creating.
As of right now I have this:
user = raw_input('Create Username: ')
password = raw_input('Create Password: ')
store_user =[roger, Jon]
store_pass =[tennis, soccer]
store_user.append(user)
store_pass.append(password)
if user in store_user:
print "That user already exsist"
while 1 == 1:
userguess=""
passwordguess=""
key=""
while (userguess != user) or (passwordguess != password):
userguess = raw_input('User Name: ')
passwordguess = raw_input('Password:')
print "Welcome,",user, ". Type Lock to Lock or Type Create to create another user."
print store_user
print store_pass
while key != "lock":
key = raw_input("")
This gets you to create a user name and password and would store them in a list. I threw in that if statement to check the list to see if there the user already exist ( but i don't think that works)
I just want a little bit of guidance on how to get the whole thing to loop: for example you choose if you have a login or not, after you login you have the option to create another, and it would check to see if that user exists already.
Thanks a bunch!
getpassmodule, which doesn't echo the password to the screen. – Peter Wood Apr 25 '12 at 10:03