Pages
This provides some example code for adding dedicated sign-in and sign-up pages to your app.
add_sign_in_page(app, publishable_key=None, route='/sign-in')
Adds a sign-in page that is customizable via the Clerk dashboard.
Source code in custom_components/reflex_clerk_api/pages.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
|
add_sign_up_page(app, publishable_key=None, route='/sign-up')
Adds a sign-up page that is customizable via the Clerk dashboard.
Source code in custom_components/reflex_clerk_api/pages.py
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
|