summaryrefslogtreecommitdiff
path: root/templates/login_form.html
blob: 254d45cc1af1f8b3ddc7006cd110a074e7d5d89a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
<head>
<title>Login Form</title>
</head>
<body>
<center>
<h1>Login Form</h1>
<a href="{{ kerberos_url }}">Use kerberos</a>
<form action="{{ login_url }}" method="post">
{% if options %}Login type <select name="logintype">
{% for option in options %}<option value="{{ option }}">{{ options[option] }}</option>{% endfor %}
</select>{% endif %}
<p>Username <input type="text" value="" name="username" required/></p>
<p>Password <input type="password" name="password" required/></p>
<p><input accesskey="s" type="submit" value="Submit"/></p>
</form>
</center>
</body>
</html>
bgstack15