mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-09-17 17:09:31 +00:00
12 lines
216 B
Python
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!"
|