Sith/core/templates/core/password_reset_confirm.jinja

15 lines
443 B
Django/Jinja
Raw Normal View History

2016-02-01 16:35:55 +00:00
{% extends "core/base.jinja" %}
2015-11-26 09:57:26 +00:00
{% block content %}
{% if form %}
2015-11-26 09:57:26 +00:00
<form method="post" action="">
{% csrf_token %}
2016-02-02 10:00:08 +00:00
{{ form.as_p() }}
2016-07-19 17:03:16 +00:00
<input type="submit" value="{% trans %}Reset{% endtrans %}" />
2015-11-26 09:57:26 +00:00
</form>
{% else %}
{% trans %}It seems that this link has expired. To generate a new link, you can follow this link: {% endtrans %}<a href="{{ url('core:password_change') }}">{% trans %}lost password{% endtrans %}</a>.
{% endif %}
2015-11-26 09:57:26 +00:00
{% endblock %}