diff options
Diffstat (limited to 'templates/main/loggedout.html')
-rw-r--r-- | templates/main/loggedout.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/main/loggedout.html b/templates/main/loggedout.html new file mode 100644 index 0000000..2157b4c --- /dev/null +++ b/templates/main/loggedout.html @@ -0,0 +1,16 @@ +{% extends "main/base.html" %} + +{% block content %}Pour vous connecter, veuillez remplir le formulaire de droite avec les identifiants qui vous ont été communiqués en classe. +{% endblock %} + +{% block menucontent %} + <h3>Connexion</h3> + <form method="post" action="/login/" id="login"> + <ul> + {{ login_form.as_ul }} + </ul> + <div style="text-align: center; width: 100%;"> + <input type="submit" value="Connexion" id="login-submit" /> + </div> + </form> +{% endblock %} |