mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-23 01:19:27 -04:00
Fixed the is_active() method on the Users model, if the user was pending they would come back as active, allowing a user to sign in before being active. There is still a problem with the validate_sms_code and validate_email_code method.
29 lines
746 B
HTML
29 lines
746 B
HTML
{% extends "admin_template.html" %}
|
|
|
|
{% block page_title %}
|
|
GOV.UK Notify
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<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>
|
|
|
|
<form autocomplete="off" action="" method="post">
|
|
{{ form.hidden_tag() }}
|
|
<p>
|
|
<label class="form-label">Mobile phone number</label>
|
|
{{ form.mobile_number(class="form-control-1-4", autocomplete="off") }} <br>
|
|
</p>
|
|
<p>
|
|
<button class="button" href="verify" role="button">Resend confirmation code</button>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|