first commit

This commit is contained in:
2025-03-07 10:04:42 +00:00
commit f3a71e8d12
23 changed files with 732 additions and 0 deletions

12
views/login.twig Normal file
View File

@@ -0,0 +1,12 @@
{% extends layout %}
{% block title %}Login{% endblock %}
{% block content %}
<form method="POST" action="/login">
<input type="text" name="username" placeholder="Benutzername" required>
<input type="password" name="password" placeholder="Passwort" required>
<input type="hidden" name="_csrf_token" value="{{ $csrf }}">
<button type="submit">Einloggen</button>
</form>
{% endblock %}