Files
notifications-admin/app/templates/views/verify.html

36 lines
994 B
HTML
Raw Normal View History

{% extends "withoutnav_template.html" %}
{% from "components/textbox.html" import textbox %}
{% from "components/page-footer.html" import page_footer %}
{% block page_title %}
Enter the codes weve sent you GOV.UK Notify
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-two-thirds">
2016-02-02 15:41:54 +00:00
<h1 class="heading-large">Enter the codes weve sent you</h1>
<p>
Weve sent you confirmation codes by email and text message.
</p>
<form autocomplete="off" method="post">
{{ textbox(
form.sms_code,
width='5em',
help_link=url_for('.check_and_resend_text_code'),
2016-02-02 15:41:54 +00:00
help_link_text='I havent received a text message'
) }}
{{ textbox(
form.email_code,
width='5em',
help_link=url_for('.check_and_resend_email_code'),
help_link_text='I havent received an email'
) }}
{{ page_footer("Continue") }}
</form>
</div>
</div>
2015-12-01 09:56:46 +00:00
{% endblock %}