mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-17 04:59:37 -04: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
37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
{% from "components/form.html" import form_wrapper %}
|
||
{% from "components/radios.html" import radios %}
|
||
|
||
{% block per_page_title %}
|
||
Create an account
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<div class="grid-row">
|
||
<div class="grid-col-8">
|
||
<h1 class="font-body-2xl margin-bottom-3">Create an account</h1>
|
||
{% call form_wrapper(autocomplete=True) %}
|
||
{{ form.name(param_extensions={}) }}
|
||
{{ form.email_address(
|
||
param_extensions={
|
||
"hint": {"text": "Must be from a public sector organization"},
|
||
"autocomplete": "email"
|
||
},
|
||
error_message_with_html=True
|
||
) }}
|
||
<div class="extra-tracking">
|
||
{{ form.mobile_number(param_extensions={
|
||
"hint": {"text": "We’ll send you a security code by text message"},
|
||
}) }}
|
||
</div>
|
||
{{ form.password(param_extensions={"hint": {"text": "At least 8 characters"}, "autocomplete": "new-password"}) }}
|
||
{{ radios(form.auth_type) }}
|
||
{{ page_footer("Continue") }}
|
||
{% endcall %}
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|