blob: ba3d75f76e6afb865e113cb6bdafa2bd9bf35d07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html>
<head>
<title>LenczuNet SSO</title>
<meta charset="UTF-8">
</head>
<body>
<h1>Welcome!</h1>
{% if loggedin %}
<button onclick="window.location.href='/logout'">Logout</button>
{% else %}
<button onclick="window.location.href='/login'">Login</button>
{% endif %}
</body>
</html>
|