Files
notifications-admin/app/templates/views/two-factor.html
Nicholas Staples 921c10a1fa Merge with master.
2016-01-06 10:55:45 +00:00

28 lines
706 B
HTML

{% extends "admin_template.html" %}
{% block page_title %}
GOV.UK Notify | Text verification
{% endblock %}
{% block fullwidth_content %}
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-xlarge">Text verification</h1>
<p>We've sent you a text message with a verification code.</p>
<form autocomplete="off" action="" method="post">
{{ form.hidden_tag() }}
{{ render_field(form.sms_code, class='form-control-1-4') }}
<span class="font-xsmall"><a href="{{ url_for('.verification_code_not_received') }}">I haven't received a text</a></span>
<p>
<button class="button" role="button">Continue</button>
</p>
</form>
</div>
</div>
{% endblock %}