mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-18 05:29:38 -04:00
31 lines
843 B
HTML
31 lines
843 B
HTML
{% 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 }} a text message 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 %}
|