sourabhzanwar commited on
Commit
98ebf64
1 Parent(s): d093fbf

added changed username to app.py

Browse files
Files changed (2) hide show
  1. app.py +2 -2
  2. generate_keys.py +3 -3
app.py CHANGED
@@ -25,8 +25,8 @@ from streamlit_modal import Modal
25
 
26
 
27
 
28
- names = ['admin']
29
- usernames = ['admin']
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 = ['admin']
9
- usernames = ['admin']
10
- passwords = ['xxxxxxxx']
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