mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-04 11:08:25 -04:00
Banners should always be the first thing on the page. Because headers already have padding we don’t want to put padding on the container. So banners should also have top padding to distance then from the red bar. They should also sit in the 3/4 column if the page has side navigation. This commit adds a new template (`withoutnav_template.html`) which extends `admin_template.html`. All views then extend one or the other, never the `admin_template.html` directly. This means that `admin_template.html` doesn’t have to make decisions about where the flash messages are displayed.
30 lines
801 B
HTML
30 lines
801 B
HTML
{% extends "withoutnav_template.html" %}
|
|
|
|
{% block page_title %}
|
|
GOV.UK Notify
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<!-- this page is just a hack for building out pages - same functionality as text-not-received, but for the register from an invite flow -->
|
|
|
|
<div class="grid-row">
|
|
<div class="column-two-thirds">
|
|
<h1 class="heading-xlarge">Check your mobile number</h1>
|
|
|
|
<p>Check your mobile phone number is correct and then resend the confirmation code.</p>
|
|
|
|
<p>
|
|
<label class="form-label" for="mobile">Mobile phone number</label>
|
|
<input class="form-control-1-4" id="mobile" type="text" value="08983336666">
|
|
</p>
|
|
|
|
|
|
<p>
|
|
<a class="button" href="verify-mobile" role="button">Resend confirmation code</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|