XenonRecomp/auth.py
2025-03-04 20:32:04 +05:30

12 lines
216 B
Python

def login(username, password):
if username == "user" and password == "password":
return True
return False
def register(username, password):
return f"User {username} registered successfully!"