summaryrefslogtreecommitdiffstats
path: root/templates/logout.html
blob: 016c9ab100c5e0bd42284268be67a65aabf1162c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "master.html" %}
{% block main %}
<div id="logout" class="col-sm-12">
{% if user.name %}
    <p>Something prevented a successful logout</p>
    <p>You are still logged in as {{ user.fullname }}</p>
{% else %}
    <p>Successfully logged out.</p>
    <p>Return to <a href="{{ basepath }}/">Home</a> page</p>
{% endif %}
</div>
{% endblock %}