mattiashallberg
commited on
Commit
•
80e562d
1
Parent(s):
0fbafc6
Update app.py
Browse files
app.py
CHANGED
@@ -25,6 +25,8 @@ def environ_auth(username, password):
|
|
25 |
return True
|
26 |
elif username == os.environ.get('sai_sushmitha') and password == os.environ.get('sai_sushmitha_password'):
|
27 |
return True
|
|
|
|
|
28 |
else:
|
29 |
return False
|
30 |
|
|
|
25 |
return True
|
26 |
elif username == os.environ.get('sai_sushmitha') and password == os.environ.get('sai_sushmitha_password'):
|
27 |
return True
|
28 |
+
elif username == os.environ.get('emi_otsuka') and password == os.environ.get('emi_otsuka_password'):
|
29 |
+
return True
|
30 |
else:
|
31 |
return False
|
32 |
|