mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-09 22:53:27 -05:00
- Convert previous/next navigation to USWDS pagination component - Update radio buttons and checkboxes to use USWDS classes - Migrate guest list inputs with proper USWDS styling - Replace GOV.UK button patterns with USWDS button variants - Update form field spacing to use USWDS utilities - Scope fieldset legend styles to specific form contexts - Update visual regression test references for new components
79 lines
1.9 KiB
HTML
79 lines
1.9 KiB
HTML
{% extends "base.html" %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
{% from "components/components/select/macro.njk" import usaSelect -%}
|
|
{% from "components/radios.html" import radios %}
|
|
|
|
{% block per_page_title %}
|
|
Set up your profile
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<div class="grid-row">
|
|
<div class="grid-col-8">
|
|
<h1 class="font-body-2xl margin-bottom-3">Set up your profile</h1>
|
|
{% call form_wrapper(autocomplete=True) %}
|
|
{{ form.name(param_extensions={}) }}
|
|
<div class="extra-tracking">
|
|
{{ form.mobile_number(param_extensions={
|
|
"hint": {"text": "We need your number so you can send yourself test texts"},
|
|
}) }}
|
|
</div>
|
|
<!--{{ usaSelect({
|
|
"id": "time-zone",
|
|
"name": "time-zone",
|
|
"label": "Time zone",
|
|
"items": [
|
|
{
|
|
"value": "",
|
|
"disabled": true,
|
|
"text": "- Select -"
|
|
},
|
|
{
|
|
"value": "America/Puerto_Rico",
|
|
"text": "America/Puerto_Rico"
|
|
},
|
|
{
|
|
"value": "US/Eastern",
|
|
"text": "US/Eastern"
|
|
},
|
|
{
|
|
"value": "US/Central",
|
|
"text": "US/Central"
|
|
},
|
|
{
|
|
"value": "US/Mountain",
|
|
"text": "US/Mountain"
|
|
},
|
|
{
|
|
"value": "US/Pacific",
|
|
"text": "US/Pacific"
|
|
},
|
|
{
|
|
"value": "US/Alaska",
|
|
"text": "US/Alaska"
|
|
},
|
|
{
|
|
"value": "US/Hawaii",
|
|
"text": "US/Hawaii"
|
|
},
|
|
{
|
|
"value": "US/Aleutian",
|
|
"text": "US/Aleutian"
|
|
},
|
|
{
|
|
"value": "US/Samoa",
|
|
"text": "US/Samoa"
|
|
},
|
|
]
|
|
})
|
|
}}-->
|
|
{{ radios(form.auth_type) }}
|
|
{{ page_footer("Save") }}
|
|
{% endcall %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|