This commit is contained in:
2026-03-23 00:37:22 +01:00
parent 88915b082b
commit b1500e5d87
22 changed files with 797 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{% extends 'base.html' %}
{% block title %}Login{% endblock %}
{% block content %}
<div class="card narrow">
<h1>Login</h1>
<form method="post" class="form-grid">
<label>Brugernavn<input type="text" name="username" required></label>
<label>Kodeord<input type="password" name="password" required></label>
<button type="submit">Log ind</button>
</form>
</div>
{% endblock %}