summaryrefslogtreecommitdiffstats
path: root/templates/login/pam.html
blob: 4e490fead576f6649dedc987e7e5e0e30628d7a0 (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
<!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="login">
            <form id="login_form" action="{{ action }}" method="post" enctype="application/x-www-form-urlencoded">
                <p>
                    <label for="username">{{ username_text }}</label>
                    <br>
                    <input id="username" name="login_name" value="" size="32" type="text">
                </p>
                <p>
                    <label for="password">{{ password_text }}</label>
                    <br>
                    <input id="password" name="login_password" value="" size="32" type="password">
                </p>
                <p>
                    <input id="submit" name="submit" value="Login" type="submit">
                </p>
            </form>
        </div>
    </div>
</body>
</html>