10 lines
105 B
Python
10 lines
105 B
Python
from nicegui import app, ui
|
|
|
|
|
|
def logout():
|
|
app.storage.user.clear()
|
|
ui.navigate.to("/login")
|
|
|
|
|
|
|