Sith/core/templates/core/password_reset.jinja

10 lines
181 B
Plaintext
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 %}
<form method="post" action="">
{% csrf_token %}
2016-02-02 10:00:08 +00:00
{{ form.as_p() }}
2015-11-26 09:57:26 +00:00
<input type="submit" value="Reset!" />
</form>
{% endblock %}