16 lines
546 B
HTML
16 lines
546 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div class="form-container">
|
|
<h2>Anmelden</h2>
|
|
<form method="POST">
|
|
<label for="username">Benutzername</label>
|
|
<input type="text" name="username" id="username" required>
|
|
|
|
<label for="password">Passwort</label>
|
|
<input type="password" name="password" id="password" required>
|
|
|
|
<button type="submit">Anmelden</button>
|
|
</form>
|
|
<p>Noch keinen Account? <a href="{{ url_for('auth.signup') }}">Registrieren</a></p>
|
|
</div>
|
|
{% endblock %}
|