17 lines
554 B
HTML
17 lines
554 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Login{% endblock %}
|
|
{% block page_title %}Anmelden{% endblock %}
|
|
{% block content %}
|
|
<form method="post" action="{{ url_for('login') }}" class="auth-form">
|
|
<label for="username">Benutzername</label>
|
|
<input type="text" id="username" name="username" required>
|
|
|
|
|
|
<label for="password">Passwort</label>
|
|
<input type="password" id="password" name="password" required>
|
|
|
|
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
<p>Noch keinen Account? <a href="{{ url_for('register') }}">Jetzt registrieren</a>.</p>
|
|
{% endblock %} |