mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-29 04:09:07 -04:00
- remove black border from banner - make banners have internal columns - make nav 2/3rd width, 19px text and more spaced out - only show the ‘restricted mode’ banner where it’s needed - rename ‘restricted mode’ to ‘trial mode’
32 lines
943 B
HTML
32 lines
943 B
HTML
{% extends "withoutnav_template.html" %}
|
||
{% from "components/textbox.html" import textbox %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
|
||
{% block page_title %}
|
||
GOV.UK Notify | Confirm email address and mobile number
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<div class="grid-row">
|
||
<div class="column-two-thirds">
|
||
<h1 class="heading-large">Activate your account</h1>
|
||
|
||
<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) }}
|
||
<p>
|
||
<a href="{{ url_for('.check_and_resend_email_code')}}">I haven’t received an email</a>
|
||
</p>
|
||
{{ textbox(form.sms_code) }}
|
||
<p>
|
||
<a href="{{ url_for('.check_and_resend_text_code') }}">I haven’t received a text</a></span>
|
||
</p>
|
||
{{ page_footer("Continue") }}
|
||
</form>
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|