summaryrefslogtreecommitdiffstats
path: root/templates/login/index.html
blob: 6b2e2cdfe42dcbb8fc5a42555e3822a98c3c295d (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>Ipsilon</p>
        </div>
        <div id="admin">
            {% if user.is_admin %}
                <a href="admin">admin</a>
            {% endif %}
        </div>
        <div id="login">
            <p>Redirecting ... {{ redirect }}</p>
        </div>
    </div>
</body>
</html>