mirror of
https://git.wownero.com/wownero/wownero-funding-system.git
synced 2024-08-15 00:53:45 +00:00
8 lines
186 B
Python
8 lines
186 B
Python
def val_username(value):
|
|
if len(value) >= 20:
|
|
raise Exception("username too long")
|
|
|
|
|
|
def val_email(value):
|
|
if len(value) >= 50:
|
|
raise Exception("email too long")
|