mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-17 04:59:37 -04:00
36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
{% from "components/form.html" import form_wrapper %}
|
||
|
||
{% 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"}) }}
|
||
{{form.auth_type}}
|
||
{{ page_footer("Continue") }}
|
||
{% endcall %}
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|