JSenkCC commited on
Commit
77cb200
·
verified ·
1 Parent(s): 06e2745

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -44,15 +44,15 @@ def main():
44
  # Initialize database
45
  create_user_table()
46
 
47
- # Authentication state
48
  if "authenticated" not in st.session_state:
49
  st.session_state.authenticated = False
50
  if "username" not in st.session_state:
51
  st.session_state.username = None
52
  if "page" not in st.session_state:
53
- st.session_state.page = st.query_params.get("page", ["login"])[0]
54
 
55
- # Navigation logic
56
  if st.session_state.page == "login":
57
  login_page()
58
  elif st.session_state.page == "workspace":
@@ -67,20 +67,21 @@ def login_page():
67
  username = st.text_input("Username", key="login_username")
68
  password = st.text_input("Password", type="password", key="login_password")
69
 
 
70
  if st.button("Log In"):
71
  if authenticate_user(username, password):
72
  st.session_state.authenticated = True
73
  st.session_state.username = username
74
  st.session_state.page = "workspace"
75
- st.query_params["page"] = "workspace"
76
  else:
77
  st.error("Invalid username or password. Please try again.")
78
-
79
  elif auth_mode == "Register":
80
  st.subheader("Register")
81
  username = st.text_input("Create Username", key="register_username")
82
  password = st.text_input("Create Password", type="password", key="register_password")
83
 
 
84
  if st.button("Register"):
85
  if username and password:
86
  add_user(username, password)
@@ -92,10 +93,10 @@ def workspace_page():
92
  # Sidebar with logout button
93
  st.sidebar.title(f"Hello, {st.session_state.username}!")
94
  if st.sidebar.button("Log Out"):
 
95
  st.session_state.authenticated = False
96
  st.session_state.username = None
97
  st.session_state.page = "login"
98
- st.query_params["page"] = "login"
99
 
100
  # Main content area
101
  st.subheader(f"Welcome to your workspace, {st.session_state.username}!")
@@ -103,3 +104,4 @@ def workspace_page():
103
 
104
  if __name__ == "__main__":
105
  main()
 
 
44
  # Initialize database
45
  create_user_table()
46
 
47
+ # Manage session state
48
  if "authenticated" not in st.session_state:
49
  st.session_state.authenticated = False
50
  if "username" not in st.session_state:
51
  st.session_state.username = None
52
  if "page" not in st.session_state:
53
+ st.session_state.page = "login"
54
 
55
+ # Page routing logic
56
  if st.session_state.page == "login":
57
  login_page()
58
  elif st.session_state.page == "workspace":
 
67
  username = st.text_input("Username", key="login_username")
68
  password = st.text_input("Password", type="password", key="login_password")
69
 
70
+ # Handle single-click login
71
  if st.button("Log In"):
72
  if authenticate_user(username, password):
73
  st.session_state.authenticated = True
74
  st.session_state.username = username
75
  st.session_state.page = "workspace"
 
76
  else:
77
  st.error("Invalid username or password. Please try again.")
78
+
79
  elif auth_mode == "Register":
80
  st.subheader("Register")
81
  username = st.text_input("Create Username", key="register_username")
82
  password = st.text_input("Create Password", type="password", key="register_password")
83
 
84
+ # Handle single-click registration
85
  if st.button("Register"):
86
  if username and password:
87
  add_user(username, password)
 
93
  # Sidebar with logout button
94
  st.sidebar.title(f"Hello, {st.session_state.username}!")
95
  if st.sidebar.button("Log Out"):
96
+ # Handle single-click logout
97
  st.session_state.authenticated = False
98
  st.session_state.username = None
99
  st.session_state.page = "login"
 
100
 
101
  # Main content area
102
  st.subheader(f"Welcome to your workspace, {st.session_state.username}!")
 
104
 
105
  if __name__ == "__main__":
106
  main()
107
+