From 9e87212f4ffdb2f481fe1506ce319b774963e243 Mon Sep 17 00:00:00 2001 From: Matthew Grotke Date: Wed, 10 Jun 2026 20:00:35 -0400 Subject: [PATCH] Development --- docker/routlin-dash/app/pages/accountcreate/content.json | 2 -- docker/routlin-dash/app/pages/accountcreate/view.py | 2 +- docker/routlin-dash/app/pages/preferences/view.py | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/docker/routlin-dash/app/pages/accountcreate/content.json b/docker/routlin-dash/app/pages/accountcreate/content.json index 54fe4e9..10a6e49 100644 --- a/docker/routlin-dash/app/pages/accountcreate/content.json +++ b/docker/routlin-dash/app/pages/accountcreate/content.json @@ -58,8 +58,6 @@ }, { "type": "button_primary", - "action": "/action/accountcreate/form_create", - "method": "post", "text": "Create Account", "class": "btn-full create-account-btn", "disabled": true diff --git a/docker/routlin-dash/app/pages/accountcreate/view.py b/docker/routlin-dash/app/pages/accountcreate/view.py index 7a18e9f..c0ffe8d 100644 --- a/docker/routlin-dash/app/pages/accountcreate/view.py +++ b/docker/routlin-dash/app/pages/accountcreate/view.py @@ -5,6 +5,6 @@ import config_utils def collect_tokens(cfg): tokens = config_utils.collect_layout_tokens(cfg) - blank = [{'value': '', 'label': '-- Select timezone --'}] + blank = [{'value': '', 'label': '-- Select Timezone --'}] tokens['TIMEZONE_OPTIONS'] = json.dumps(blank + [{'value': tz, 'label': tz} for tz in sanitize.VALID_TIMEZONES]) return tokens diff --git a/docker/routlin-dash/app/pages/preferences/view.py b/docker/routlin-dash/app/pages/preferences/view.py index 2efcc50..af7ca1d 100644 --- a/docker/routlin-dash/app/pages/preferences/view.py +++ b/docker/routlin-dash/app/pages/preferences/view.py @@ -6,7 +6,7 @@ import config_utils def collect_tokens(cfg): tokens = config_utils.collect_layout_tokens(cfg) - blank = [{'value': '', 'label': '-- Select timezone --'}] + blank = [{'value': '', 'label': '-- Select Timezone --'}] tokens['PREF_EMAIL'] = session.get('email_address', '') tokens['PREF_TIMEZONE'] = '' tokens['TIMEZONE_OPTIONS'] = json.dumps(blank + [{'value': tz, 'label': tz} for tz in sanitize.VALID_TIMEZONES])