27 lines
1012 B
HTML
Executable File
27 lines
1012 B
HTML
Executable File
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>Anmelden — ITSM</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="login-wrap">
|
|
<form class="login-box" method="post" action="/login">
|
|
<h1>ITSM</h1>
|
|
<div class="sz" style="margin-bottom:14px">IT Service Management</div>
|
|
{% if !error.is_empty() %}<p class="err">{{ error }}</p>{% endif %}
|
|
{% if !notice.is_empty() %}<p class="sz ok-text">{{ notice }}</p>{% endif %}
|
|
<input type="hidden" name="next" value="{{ next }}">
|
|
<input name="email" type="email" placeholder="E-Mail" autofocus required>
|
|
<input name="password" type="password" placeholder="Passwort" required>
|
|
<button class="btn" type="submit">Anmelden</button>
|
|
{% if show_setup_link %}
|
|
<div class="sz" style="margin-top:12px">Neue Organisation? <a href="/setup/new">Jetzt einrichten</a></div>
|
|
{% endif %}
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|