Files
notifications-admin/app/templates/views/manage-users/confirm-edit-user-email.html
Jonathan Bobel 348e29fb40 - Removed links to the gov uk stylesheets
- Deleted /stylesheets folder
- Removed sass build from gulpfile
- Changed gov links to usa links
- Changed other govuk styles, like breadcrumbs
- Changed name of uk_components file to us_components
- Fixed a few tests that broke on account of the changes
2023-08-08 16:19:17 -04:00

34 lines
979 B
HTML

{% extends "withnav_template.html" %}
{% from "components/page-header.html" import page_header %}
{% from "components/page-footer.html" import page_footer %}
{% from "components/form.html" import form_wrapper %}
{% from "components/us_components/back-link/macro.njk" import govukBackLink %}
{% block per_page_title %}
Confirm change of email address
{% endblock %}
{% block backLink %}
{{ govukBackLink({ "href": url_for('.edit_user_email', service_id=service_id, user_id=user.id) }) }}
{% endblock %}
{% block maincolumn_content %}
{{ page_header('Confirm change of email address') }}
<div class="govuk-grid-row">
<div class="govuk-grid-column-full">
{% call form_wrapper() %}
<p>New email address:</p>
<div class="panel panel-border-wide bottom-gutter">
<p>{{ new_email }}</p>
</div>
<p>We will send {{ user.name }} an email to tell them about the change.</p>
{{ page_footer('Confirm') }}
{% endcall %}
</div>
</div>
{% endblock %}