13 lines
437 B
HTML
13 lines
437 B
HTML
|
|
{% extends "base.html" %}
|
||
|
|
{% block content %}
|
||
|
|
<h2>Login</h2>
|
||
|
|
<form method="post">
|
||
|
|
<label>Benutzername</label>
|
||
|
|
<input type="text" name="username" required>
|
||
|
|
<label>Passwort</label>
|
||
|
|
<input type="password" name="password" required>
|
||
|
|
<button type="submit" class="btn btn-primary">Anmelden</button>
|
||
|
|
</form>
|
||
|
|
<p style="margin-top:1rem;">Noch kein Konto? <a href="{{ url_for('register') }}">Registrieren</a></p>
|
||
|
|
{% endblock %}
|