summaryrefslogtreecommitdiffstats
path: root/templates/logout.html
blob: f6f61ac982697f64609b7469fa857f2897b8a8e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8"></meta>
    <title>{{ title }}</title>
    <link href="{{ basepath }}/ui/ipsilon.css" type="text/css" rel="stylesheet"></link>
    <link href="{{ basepath }}/ui/favicon.ico" type="image/ico" rel="icon"></link>
</head>
<body>
    <div id="container">
        <div id="logo">
            <p><a href="{{ basepath }}">Ipsilon</a></p>
        </div>
        <div id="logout">
            {% 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>
</body>
</html>