2020-04-25 12:08:19 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %} Login {% endblock %}
|
|
|
|
|
|
|
|
{% block titre %} Login {% endblock %}
|
|
|
|
|
|
|
|
{% block contenu %}
|
|
|
|
<div id="zone-de-contenu">
|
|
|
|
<form method="POST" action="">
|
|
|
|
<div style="width:100%;margin:20px;"> </div>
|
|
|
|
<fieldset class="fieldset"><legend style="font-size:25px;">Identifiez-vous</legend>
|
|
|
|
{% for message in get_flashed_messages() %}
|
2020-05-08 20:40:22 +02:00
|
|
|
<div class="alert" id="alert{{loop.index}}">
|
|
|
|
<button type="button" class="close" onclick="javascript:hidealert('alert{{loop.index}}')">×</button>
|
2020-04-25 12:08:19 +02:00
|
|
|
{{ message }}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
|
2020-05-08 20:40:22 +02:00
|
|
|
<table width=100% class="tablelogin">
|
2020-04-25 12:08:19 +02:00
|
|
|
<tr><td>Nom d'utilisateur : </td><td> <input type="text" name="username" placeholder="Votre nom d'utilisateur" /></td></tr>
|
|
|
|
<tr><td> Mot de passe : </td><td> <input type="password" name="password" placeholder="Votre mot de passe"/></td></tr>
|
|
|
|
<tr><td> </td> <td><input id="submit" type="submit" value=" Entrer "></td></tr>
|
|
|
|
</table>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|