Remove unused pages with buttons

We had two templates that contained a link styled as an old style
button but that weren't being used anywhere (one would actually give a
`500` if you tried to visit it). This removes them and the view function
for one of them (the other no longer had a view function).
This commit is contained in:
Katie Smith
2020-02-04 11:38:22 +00:00
parent dca6d1690f
commit a26e8c55ef
4 changed files with 1 additions and 67 deletions

View File

@@ -1,29 +0,0 @@
{% extends "withoutnav_template.html" %}
{% block per_page_title %}
Check your mobile number
{% 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-large">Check your mobile number</h1>
<p>Check your mobile phone number is correct and then resend the security 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 security code</a>
</p>
</div>
</div>
{% endblock %}

View File

@@ -1,27 +0,0 @@
{% extends "withoutnav_template.html" %}
{% block per_page_title %}
Confirm your mobile number
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-large">Confirm your mobile number</h1>
<p>Weve sent you a security code by text message.</p>
<p>
<label class="form-label" for="email">Enter security code<br>
<input class="form-control-1-4" id="email" type="text"><br>
<span class="font-xsmall"><a href="{{ url_for('.text-not-received-2') }}">I have not received a text</a></span>
</p>
<p>
<a class="button" href="dashboard" role="button">Continue</a>
</p>
</div>
</div>
{% endblock %}