mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-04 13:30:02 -04:00
* Updated header and footer * Moved files around and updated gulpfile to correct the build process when it goes to production * Updated fonts * Adjusted grid templating * Adding images to assets * Updated account pages, dashboard, and pages in message sending flow * Updated the styling for the landing pages in the account section once logged in
32 lines
901 B
HTML
32 lines
901 B
HTML
{% extends "withoutnav_template.html" %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
{% from "components/form.html" import form_wrapper %}
|
||
|
||
{% block per_page_title %}
|
||
Check your phone
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<div class="govuk-grid-row">
|
||
<div class="govuk-grid-column-two-thirds">
|
||
<h1 class="font-body-2xl margin-bottom-3">Check your phone</h1>
|
||
|
||
<p>We’ve sent you a text message with a security code.</p>
|
||
|
||
{% call form_wrapper(class="extra-tracking") %}
|
||
{{ form.sms_code(param_extensions={
|
||
"classes": "width-card",
|
||
"attributes": {"data-module": "autofocus"}
|
||
}) }}
|
||
{{ page_footer(
|
||
"Continue",
|
||
secondary_link=url_for('main.check_and_resend_text_code', next=redirect_url),
|
||
secondary_link_text='Not received a text message?'
|
||
) }}
|
||
{% endcall %}
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|