nopaque/app/templates/auth/unconfirmed.html.j2

19 lines
613 B
Plaintext
Raw Permalink Normal View History

{% extends "base.html.j2" %}
2020-11-02 09:01:02 +00:00
{% block page_content %}
2020-10-23 06:51:46 +00:00
<div class="container">
<div class="row">
<div class="col s12">
2020-10-23 08:26:04 +00:00
<h1 id="title">{{ title }}</h1>
2022-09-02 11:07:30 +00:00
<p>Hello, <b>{{ current_user.username }}</b>.</p>
<p>
You have not confirmed your account yet. Before you can access this
site you need to confirm your account. Check your inbox, you should
have received an email with a confirmation link.
</p>
<p>Need another confirmation email? <a href="{{ url_for('.confirm_request') }}">Get a new one</a>.</p>
2020-10-23 06:51:46 +00:00
</div>
</div>
</div>
2021-12-01 13:15:20 +00:00
{% endblock page_content %}