27 lines
991 B
HTML
27 lines
991 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Authentifizierung</title>
|
|
<meta name="viewport" content="width=device-width, user-scalable=no">
|
|
<link rel="stylesheet" href="/_matrix/static/client/register/style.css">
|
|
<style type="text/css">
|
|
{% include "sso.css" without context %}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<form id="registrationForm" method="post" action="{{ myurl }}">
|
|
<h1>Authentifizierung</h1>
|
|
{% if error is defined %}
|
|
<p class="error"><strong>Error: {{ error }}</strong></p>
|
|
{% endif %}
|
|
<p>Bitte gib einen Registrierungstoken ein:</p>
|
|
<input type="hidden" name="session" value="{{ session }}" />
|
|
<input type="text" name="token" />
|
|
<input type="submit" value="Authentifizieren" />
|
|
<p>Falls du keinen Token hast, frage gerne Vri z.B. via vrifox[at]vrifox.cc. :)</p>
|
|
</form>
|
|
</header>
|
|
</body>
|
|
</html>
|