Initial commit

This commit is contained in:
2025-11-11 01:48:45 +01:00
commit 06d0e1c426
14 changed files with 568 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{% extends 'base.html' %}
{% block title %}Connexion{% endblock %}
{% block content %}
<form action="/login" method="POST">
<label>Nom d'utilisateur</label>
<input type="text" name="username" required>
<label>Mot de passe</label>
<input type="password" name="password" required>
<button type="submit">Se connecter</button>
</form>
{% endblock %}