37 lines
965 B
HTML
37 lines
965 B
HTML
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>jon · not authenticated</title>
|
|
<link rel="stylesheet" href="/static/jon.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>jon</h1>
|
|
|
|
{% if config.DEBUG %}
|
|
<details>
|
|
<summary><code>config</code></summary>
|
|
<pre>{% for key, value in config.items() %}{{ key }} = {{ value }}
|
|
{% endfor %}</pre>
|
|
</details>
|
|
{% endif %}
|
|
</header>
|
|
|
|
<main>
|
|
<p>
|
|
Damit kein Schabernack getrieben wird müssen wir sicherstellen, dass du die Person bist die jon ausgeführt hat.
|
|
Gib unten das Token ein, welches jon beim Starten ausgegeben hat.
|
|
</p>
|
|
<form method="GET">
|
|
<div class="form-input">
|
|
<label for="token">Token</label>
|
|
<input type="password" name="token" placeholder="Token" id="token">
|
|
</div>
|
|
<button type="submit">Authentifizieren</button>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|