Confirm change of team member's phone number

This commit is contained in:
Pea Tyczynska
2019-02-22 15:06:42 +00:00
parent 5a59989497
commit 94b78a7649
3 changed files with 64 additions and 3 deletions

View File

@@ -0,0 +1,30 @@
{% extends "withnav_template.html" %}
{% from "components/page-footer.html" import page_footer %}
{% from "components/form.html" import form_wrapper %}
{% block per_page_title %}
Confirm change of mobile number
{% endblock %}
{% block maincolumn_content %}
<h1 class="heading-large">Confirm change of mobile number</h1>
<div class="grid-row">
<div class="column-whole">
{% call form_wrapper() %}
<p>New mobile number:</p>
<div class="panel panel-border-wide bottom-gutter">
<p>{{ new_mobile_number }}</p>
</div>
<p>We will send {{ user.name }} an email to tell them about the change.</p>
{{ page_footer(
'Confirm',
destructive=destructive,
back_link=url_for('.edit_user_mobile_number', service_id=service_id, user_id=user.id)
) }}
{% endcall %}
</div>
</div>
{% endblock %}