MCPcopy Index your code
hub / github.com/codingforentrepreneurs/full-stack-python / my_login_page

Function my_login_page

full_stack_python/auth/pages.py:12–22  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

10from .state import SessionState
11
12def my_login_page()->rx.Component:
13 return base_page(
14 rx.center(
15 rx.cond(
16 LoginState.is_hydrated, # type: ignore
17 rx.card(login_form()),
18 ),
19 min_height="85vh",
20 ),
21
22 )
23
24def my_register_page()->rx.Component:
25 return base_page(

Callers

nothing calls this directly

Calls 1

base_pageFunction · 0.85

Tested by

no test coverage detected