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

28 lines
920 B
HTML
Raw Normal View History

{% extends "admin_template.html" %}
{% from "components/textbox.html" import textbox %}
{% from "components/page-footer.html" import page_footer %}
{% block page_title %}
2015-12-01 09:56:46 +00:00
GOV.UK Notify | Confirm email address and mobile number
{% endblock %}
{% block fullwidth_content %}
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-xlarge">Activate your account</h1>
2015-12-02 16:03:31 +00:00
<p>We've sent you confirmation codes by email and text message. You need to enter both codes here.</p>
<form autocomplete="off" method="post">
{{ textbox(form.email_code) }}
<span class="font-xsmall"><a href="{{ url_for('.check_and_resend_email_code')}}">I haven't received an email</a></span>
{{ textbox(form.sms_code) }}
<span class="font-xsmall"><a href="{{ url_for('.check_and_resend_text_code') }}">I haven't received a text</a></span>
{{ page_footer("Continue") }}
</form>
</div>
</div>
2015-12-01 09:56:46 +00:00
{% endblock %}