2020-02-07 14:21:59 +00:00
|
|
|
{% extends "nopaque.html.j2" %}
|
|
|
|
|
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>
|
2020-10-23 06:51:46 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col s12">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-content">
|
|
|
|
<span class="card-title">Hello, {{ current_user.username }}!</span>
|
|
|
|
<p><b>You have not confirmed your account yet.</b></p>
|
|
|
|
<p>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>
|
2020-10-23 08:26:04 +00:00
|
|
|
<p>Need another confirmation email? Click the button below!</p>
|
2020-10-23 06:51:46 +00:00
|
|
|
</div>
|
|
|
|
<div class="card-action right-align">
|
2020-10-23 08:26:04 +00:00
|
|
|
<a class="btn" href="{{ url_for('.resend_confirmation') }}">Resend confirmation mail</a>
|
2020-10-23 06:51:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-07-09 08:09:35 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|