summaryrefslogtreecommitdiffstats
path: root/templates/admin/login_plugin.html
blob: 43adac615053d7e7ef70000fcfc7b70066f9d40d (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!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">
            <p><a href="{{ basepath }}/logout">Log Out</a></p>
        </div>
        <div id="message">
            <p>{{ message }}</p>
        </div>
        <div id="options">
            <form id="{{ name }}" action="{{ action }}" method="post" enctype="application/x-www-form-urlencoded">
            <ul>
            {% for o in options %}
                <li>{{ o }}:
                    <p>{{ options[o][0] }}</p>
                    <input type="text" name="{{ o }}" value="{{ options[o][2] }}">
                </li>
            {% endfor %}
            </ul>
            <input id="submit" name="submit" type="submit" value="Submit">
            </form>
        </div>
        <div id="home">
            <p>
                <a href="{{ basepath }}/admin">Admin</a> -
                <a href="{{ basepath }}/">Home</a>
            </p>
        </div>
    </div>
</body>
</html>