Pwd reset link

This commit is contained in:
Ludovic Stephan 2020-06-26 17:46:15 +02:00
parent 8b50092ff0
commit e1199cae20
2 changed files with 10 additions and 0 deletions

View file

@ -51,10 +51,16 @@ html, body {
.auth_form {
width: 100%;
padding: 0.5em;
font-size: 1.5em;
}
.forgot-pwd {
width:100%;
padding: 0.5em 0px 1em;
}
.error {
background: red;
color: white;

View file

@ -8,5 +8,9 @@
{% block content %}
<div id="container-content" class="exte">
{% include "authens/form_full_snippet.html" with submit_text="Se connecter" %}
<div class="forgot-pwd">
<a href={% url "authens:reset.pwd" %}>{% trans "Mot de passe oublié ?" %}</a>
</div>
</div>
{% endblock %}