()
| 10 | from .state import SessionState |
| 11 | |
| 12 | def 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 | |
| 24 | def my_register_page()->rx.Component: |
| 25 | return base_page( |
nothing calls this directly
no test coverage detected