mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-12 14:34:05 -05:00
22 lines
538 B
HTML
22 lines
538 B
HTML
{% extends "base.html" %}
|
|
{% from "components/page-header.html" import page_header %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
{% block per_page_title %}
|
|
Click below to complete email re-verification and finish signing in.
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<div>
|
|
|
|
<h1 class="font-body-2xl margin-bottom-3">Click below to complete email re-verification and finish signing in.</h1>
|
|
|
|
<form method="post" id="use-email-auth">
|
|
{{ page_footer('Verify email') }}
|
|
</form>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|