You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
668 B

{% extends "base.html" %}
{% block content %}
<main class="auth-wrap">
<section class="auth-card reveal">
<h1>pySonnerie</h1>
{% if login_error %}
<p class="auth-inline-error">{{ login_error }}</p>
{% endif %}
<form method="post" class="form-grid">
<label>
Nom d'utilisateur
<input type="text" name="username" value="{{ attempted_username or '' }}" required />
</label>
<label>
Mot de passe
<input type="password" name="password" required />
</label>
<button type="submit">Se connecter</button>
</form>
</section>
</main>
{% endblock %}