2021-05-28 13:51:23 +00:00
|
|
|
{% extends "base.html.j2" %}
|
|
|
|
{% from "auth/_breadcrumbs.html.j2" import breadcrumbs with context %}
|
2020-11-02 09:01:02 +00:00
|
|
|
|
2019-07-09 08:09:35 +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>
|
2019-07-09 08:09:35 +00:00
|
|
|
</div>
|
2021-12-01 13:15:20 +00:00
|
|
|
{% endblock page_content %}
|