PonyConf/ponyconf/templates/registration/login.html

31 lines
943 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'base.html' %}
{% load bootstrap3 i18n %}
{% block logintab %} class="active"{% endblock %}
{% block content %}
<div class="page-header">
<h1>
{% trans "Login" %}
</h1>
</div>
<div class="row">
<div class="col-md-offset-3 col-md-6">
<div class="well">
{% bootstrap_form_errors form layout="horizontal" %}
<form method="post" class="form-horizontal">
{% csrf_token %}
{% bootstrap_field form.username layout="horizontal" placeholder="Nom dutilisateur, e-mail ou numéro dadhérent" %}
{% bootstrap_field form.password layout="horizontal" %}
{% buttons layout="horizontal" %}
<button type="submit" class="btn btn-primary">Login</button>
<a class="btn btn-default" href="{% url 'password_reset' %}">Mot de passe oublié ?</a>
{% endbuttons %}
</form>
</div>
</div>
</div>
{% endblock %}