21 lines
478 B
Plaintext
21 lines
478 B
Plaintext
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Login</title>
|
|
<link rel="stylesheet" type="text/css" href="/themes.css">
|
|
<link rel="stylesheet" type="text/css" href="/typography.css">
|
|
</head>
|
|
<body>
|
|
<form action="/login" method="POST">
|
|
<button type="submit">Login with OpenID Connect</button>
|
|
</form>
|
|
|
|
{{# error_code }}
|
|
<div>
|
|
<h4>Login failed</h4>
|
|
<b>Error Code:</b> {{ error_code }}<br />
|
|
<b>Error Message:</b> {{ error.message }}
|
|
</div>
|
|
{{/ error_code }}
|
|
</body>
|
|
</html> |