DasUnternehmen/templates/login.html
2026-04-08 21:23:55 +02:00

15 lines
428 B
HTML

{% extends 'base.html' %}
{% block title %}Login{% endblock %}
{% block content %}
<section class="card form-card">
<h1>Login</h1>
<form method="post">
<label>E-Mail</label>
<input type="email" name="email" required>
<label>Passwort</label>
<input type="password" name="password" required>
<button class="btn" type="submit">Anmelden</button>
</form>
</section>
{% endblock %}