blob: d14856b153f2c739da2c33370a9f5bee1d73118c (
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
|
<html lang="en">
<head>
<title>Login</title>
<meta charset="UTF-8">
</head>
<body>
<h1>LenczuNet SSO</h1>
{% if error %}
<div style="color: red;">
<strong>{{ error }}</strong>
</div>
{% elif timeout %}
<div style="color: red;">
<strong>Session timed out. Please log in again.</strong>
</div>
{% endif %}
<form>
<label for="username">Username:</label>
<input type="text" autocomplete="off" id="username" name="username" required />
<br />
<label for="password">Password:</label>
<input type="password" id="password" name="password" required />
<input type="submit" value="Login" />
</form>
</body>
</html>
|