3 Answers
+ 4
copy this code in python codding file :
""login.py""
#####
print ("reqister ")
print ("username")
ff = str(input())
print ("password")
ttt = int(input())
print ("username :"+ff+"\n"+"password"+str(ttt))
###########
print ("please enter your username: ")
o = str(input())
w = int (input())
if(o == ff):
print ("welcome")
else:
print ("wrong username")
sys.exit()
#####
0
thankyou ... but i need login form with sessions ... like one login form ... with database nd in that more login forms ...can you help me ?