2016-02-01 12:15:38 +00:00
|
|
|
{% extends "withoutnav_template.html" %}
|
2016-01-11 13:15:10 +00:00
|
|
|
{% from "components/textbox.html" import textbox %}
|
2016-01-07 20:11:22 +00:00
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
|
|
|
{% block page_title %}
|
2015-12-01 09:53:14 +00:00
|
|
|
GOV.UK Notify | Create an account
|
2015-11-25 16:21:28 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2016-02-01 12:15:38 +00:00
|
|
|
{% block maincolumn_content %}
|
2015-11-25 16:21:28 +00:00
|
|
|
|
|
|
|
|
<div class="grid-row">
|
2016-02-01 16:57:29 +00:00
|
|
|
<div class="column-two-thirds">
|
2016-02-02 14:05:45 +00:00
|
|
|
<h1 class="heading-large">Create an account</h1>
|
2015-11-25 16:21:28 +00:00
|
|
|
|
2016-02-01 16:57:29 +00:00
|
|
|
<p>If you've used GOV.UK Notify before, <a href="{{ url_for('.sign_in') }}">sign in to your account</a>.</p>
|
2015-11-25 16:21:28 +00:00
|
|
|
|
2016-02-01 16:57:29 +00:00
|
|
|
<form autocomplete="off" action="" method="post">
|
2016-02-04 12:40:56 +00:00
|
|
|
{{ textbox(form.name, width='3-4') }}
|
|
|
|
|
{{ textbox(form.email_address, hint="Your email address must end in .gov.uk", width='3-4') }}
|
|
|
|
|
{{ textbox(form.mobile_number, width='3-4') }}
|
|
|
|
|
{{ textbox(form.password, hint="Your password must have at least 10 characters", width='3-4') }}
|
2016-02-01 16:57:29 +00:00
|
|
|
{{ page_footer("Continue") }}
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
2015-11-25 16:21:28 +00:00
|
|
|
</div>
|
|
|
|
|
|
2015-12-01 09:53:14 +00:00
|
|
|
{% endblock %}
|