19 lines
664 B
HTML
19 lines
664 B
HTML
{% extends "index.html" %}
|
|
{% block logout %}
|
|
hidden
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="cs">
|
|
<h1>Einloggen</h1>
|
|
</div>
|
|
<div class="cs">
|
|
<form method="post" action={{ url_for ("login_post", next=request.args.get("next")) }}>
|
|
<label for="email" >Dualis-Email: </label>
|
|
<input class="input" type="email" name="email" placeholder="Email-Adresse" autofocus="">
|
|
<label for="password">Dualis-Passwort:</label>
|
|
<input class="input" type="password" name="password" placeholder="Passwort">
|
|
<button class="button">Login</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |