Skip to content

Commit ec42c28

Browse files
committed
update
1 parent ac859d7 commit ec42c28

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Rico Parena/MALIPONG-NA1.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def admin_login():
200200
def customer_login(customer1):
201201
print("\nCustomer Login")
202202
while True:
203-
customer_id = int(input("Enter your customer ID: "))
203+
customer_id = input("Enter your customer ID: ")
204204
clear_screen()
205205
if customer_id in customer1.c_customer:
206206
customer_name = customer1.c_customer[customer_id][0]
@@ -222,6 +222,7 @@ def menu():
222222
customer_logged_in = False
223223

224224
while not (admin_logged_in or customer_logged_in):
225+
print(Customer.c_customer)
225226
print("\nWelcome to Apollo Tindahan!")
226227
print("Choose an option:")
227228
print("[1] Admin Login")

0 commit comments

Comments
 (0)