Spaces:
Sleeping
Sleeping
umangchaudhry
commited on
Commit
•
6479a6e
1
Parent(s):
0852d5d
updated user registration warning
Browse files
app.py
CHANGED
@@ -355,7 +355,7 @@ elif authentication_status is None:
|
|
355 |
st.warning('Please enter your username and password')
|
356 |
|
357 |
try:
|
358 |
-
if authenticator.register_user(
|
359 |
st.success('User Registered Successfully! Please log in above.')
|
360 |
except Exception as e:
|
361 |
st.error(e)
|
|
|
355 |
st.warning('Please enter your username and password')
|
356 |
|
357 |
try:
|
358 |
+
if authenticator.register_user(preauthorization=False):
|
359 |
st.success('User Registered Successfully! Please log in above.')
|
360 |
except Exception as e:
|
361 |
st.error(e)
|