Spaces:
Sleeping
Sleeping
| from main import account_management | |
| innomatics = account_management() | |
| conditon1 = True | |
| while conditon1: | |
| print("welcome to user creation section") | |
| innomatics.create_user() | |
| print("still want to create users - yes or no") | |
| user_input1 = input("please enter your choice ") | |
| if user_input1 == "yes": | |
| innomatics.create_user() | |
| else: | |
| break | |
| condition2 = True # flags | |
| while condition2: | |
| print("welcome to login section") | |
| innomatics.login() | |
| print("still want to continue - yes or no") | |
| user_input2 = input("please enter your choice ") | |
| if user_input2 == "yes": | |
| innomatics.login() | |
| else: | |
| break | |
| condition3 = True # flags | |
| while condition3: | |
| print("welcome to logout section") | |
| innomatics.logout() | |
| # create_user,get_database,login,logout | |