Corran commited on
Commit
2e8778a
·
verified ·
1 Parent(s): 89d5429

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -92,6 +92,8 @@ def Page():
92
  rv.Card(flat=True,children=[Message(message) for message in messages.value])
93
  with ColumnLayout():
94
  InputText()
95
- with ColumnLayout():
96
- solara.Button("Logout", icon_name="mdi-logout", href=auth.get_logout_url())
 
 
97
  Page()
 
92
  rv.Card(flat=True,children=[Message(message) for message in messages.value])
93
  with ColumnLayout():
94
  InputText()
95
+
96
+ if auth.user.value:
97
+ with ColumnLayout():
98
+ solara.Button("Logout", icon_name="mdi-logout", href=auth.get_logout_url())
99
  Page()