mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-14 16:55:42 +00:00
19 lines
613 B
Django/Jinja
19 lines
613 B
Django/Jinja
{% extends "base.html.j2" %}
|
|
|
|
{% block page_content %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col s12">
|
|
<h1 id="title">{{ title }}</h1>
|
|
<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>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock page_content %}
|