Spaces:
Runtime error
Runtime error
Commit
·
fb90f95
1
Parent(s):
1339c41
Update app.py
Browse filesRemoved Authentication
app.py
CHANGED
@@ -14,7 +14,7 @@ st.set_page_config(page_title="PROFESSOR AI - SPLITTER", page_icon=":bar_chart:"
|
|
14 |
placeholder = st.empty()
|
15 |
|
16 |
# --- USER AUTHENTICATION ---
|
17 |
-
users = db.fetch_all_users()
|
18 |
|
19 |
usernames = [user["key"] for user in users]
|
20 |
names = [user["name"] for user in users]
|
@@ -29,6 +29,8 @@ if authentication_status == False:
|
|
29 |
|
30 |
if authentication_status == None:
|
31 |
st.warning("Please enter your username and password")
|
|
|
|
|
32 |
|
33 |
if authentication_status:
|
34 |
placeholder.empty()
|
|
|
14 |
placeholder = st.empty()
|
15 |
|
16 |
# --- USER AUTHENTICATION ---
|
17 |
+
'''users = db.fetch_all_users()
|
18 |
|
19 |
usernames = [user["key"] for user in users]
|
20 |
names = [user["name"] for user in users]
|
|
|
29 |
|
30 |
if authentication_status == None:
|
31 |
st.warning("Please enter your username and password")
|
32 |
+
'''
|
33 |
+
authentication_status=True
|
34 |
|
35 |
if authentication_status:
|
36 |
placeholder.empty()
|