14 lines
406 B
HTML
14 lines
406 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}Connexion{% endblock %}
|
|
|
|
{% block content %}
|
|
<form action="/login" method="POST">
|
|
<label class="bold-label">Nom d'utilisateur</label>
|
|
<input type="text" name="username" required>
|
|
<label class="bold-label">Mot de passe</label>
|
|
<input type="password" name="password" required>
|
|
<button type="submit">Se connecter</button>
|
|
</form>
|
|
{% endblock %}
|