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])