hallo
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user