summaryrefslogtreecommitdiffstats
path: root/templates/login/pam.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/login/pam.html')
-rw-r--r--templates/login/pam.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/templates/login/pam.html b/templates/login/pam.html
new file mode 100644
index 0000000..4e490fe
--- /dev/null
+++ b/templates/login/pam.html
@@ -0,0 +1,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>