Spaces:
Sleeping
Sleeping
Commit
·
98ebf64
1
Parent(s):
d093fbf
added changed username to app.py
Browse files- app.py +2 -2
- generate_keys.py +3 -3
app.py
CHANGED
@@ -25,8 +25,8 @@ from streamlit_modal import Modal
|
|
25 |
|
26 |
|
27 |
|
28 |
-
names = ['
|
29 |
-
usernames = ['
|
30 |
with open('hashed_password.pkl','rb') as f:
|
31 |
hashed_passwords = pickle.load(f)
|
32 |
|
|
|
25 |
|
26 |
|
27 |
|
28 |
+
names = ['mlreply']
|
29 |
+
usernames = ['mlreply']
|
30 |
with open('hashed_password.pkl','rb') as f:
|
31 |
hashed_passwords = pickle.load(f)
|
32 |
|
generate_keys.py
CHANGED
@@ -5,9 +5,9 @@ from pathlib import Path
|
|
5 |
|
6 |
import streamlit_authenticator as stauth
|
7 |
|
8 |
-
names = ['
|
9 |
-
usernames = ['
|
10 |
-
passwords = ['
|
11 |
|
12 |
hashed_passwords = stauth.Hasher((passwords)).generate()
|
13 |
|
|
|
5 |
|
6 |
import streamlit_authenticator as stauth
|
7 |
|
8 |
+
names = ['mlreply']
|
9 |
+
usernames = ['mlreply']
|
10 |
+
passwords = ['mlreply1']
|
11 |
|
12 |
hashed_passwords = stauth.Hasher((passwords)).generate()
|
13 |
|