Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -613,12 +613,11 @@ with gr.Blocks(title="🧠 Second Brain") as demo:
|
|
| 613 |
with gr.Tab("Create Account"):
|
| 614 |
reg_user_in = gr.Textbox(label="Username", placeholder="choose a username")
|
| 615 |
reg_pass_in = gr.Textbox(label="Password (min 6 chars)", type="password", placeholder="••••••••")
|
| 616 |
-
|
| 617 |
-
|
| 618 |
-
|
| 619 |
-
|
| 620 |
-
|
| 621 |
-
value="Morning", scale=1)
|
| 622 |
reg_goals = gr.Textbox(
|
| 623 |
label="Big-picture goals (one per line, optional)",
|
| 624 |
lines=3,
|
|
|
|
| 613 |
with gr.Tab("Create Account"):
|
| 614 |
reg_user_in = gr.Textbox(label="Username", placeholder="choose a username")
|
| 615 |
reg_pass_in = gr.Textbox(label="Password (min 6 chars)", type="password", placeholder="••••••••")
|
| 616 |
+
reg_wake = gr.Textbox(label="Wake time", value="07:30")
|
| 617 |
+
reg_sleep = gr.Textbox(label="Sleep time", value="23:00")
|
| 618 |
+
reg_focus = gr.Dropdown(label="Peak focus",
|
| 619 |
+
choices=["Morning","Afternoon","Evening","Night"],
|
| 620 |
+
value="Morning")
|
|
|
|
| 621 |
reg_goals = gr.Textbox(
|
| 622 |
label="Big-picture goals (one per line, optional)",
|
| 623 |
lines=3,
|