Spaces:
Paused
Paused
added users
Browse files
app.py
CHANGED
|
@@ -10,6 +10,16 @@ def environ_auth(username, password):
|
|
| 10 |
return True
|
| 11 |
elif username == os.environ.get('michal_gradshtein') and password == os.environ.get('michal_gradshtein_password'):
|
| 12 |
return True
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
else:
|
| 14 |
return False
|
| 15 |
|
|
|
|
| 10 |
return True
|
| 11 |
elif username == os.environ.get('michal_gradshtein') and password == os.environ.get('michal_gradshtein_password'):
|
| 12 |
return True
|
| 13 |
+
elif username == os.environ.get('robert_bagares') and password == os.environ.get('robert_bagares_password'):
|
| 14 |
+
return True
|
| 15 |
+
elif username == os.environ.get('akiko_kinjo') and password == os.environ.get('akiko_kinjo_password'):
|
| 16 |
+
return True
|
| 17 |
+
elif username == os.environ.get('junichiro_kawashima') and password == os.environ.get('junichiro_kawashima_password'):
|
| 18 |
+
return True
|
| 19 |
+
elif username == os.environ.get('tomoya_yoshida') and password == os.environ.get('tomoya_yoshida_password'):
|
| 20 |
+
return True
|
| 21 |
+
elif username == os.environ.get('miho_breen') and password == os.environ.get('miho_breen_password'):
|
| 22 |
+
return True
|
| 23 |
else:
|
| 24 |
return False
|
| 25 |
|