14 lines
454 B
Python
14 lines
454 B
Python
|
|
import theme
|
||
|
|
from nicegui import ui
|
||
|
|
from main import checked_data
|
||
|
|
|
||
|
|
@ui.page('/dashboard')
|
||
|
|
def dashboard():
|
||
|
|
with theme.frame('Dashboard'):
|
||
|
|
pass
|
||
|
|
|
||
|
|
with ui.grid(columns='auto 150px'):
|
||
|
|
with ui.card().classes('border-purple-200 grid justify-items-center').style('border: 2px solid rgba(0, 255, 0, .25)'):
|
||
|
|
ui.label('John 3:16').classes('text-center')
|
||
|
|
ui.label('For God Sent his son etc etc').classes('font-bold')
|