summaryrefslogtreecommitdiff
path: root/baserock_openid_provider/templates/registration/password_reset_form.html
blob: 10b1fc13224dd8bd60f06516bf7e3f8c00e89e81 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "base.html" %}
{% load i18n %}

{% block content %}
<form method="post" action=".">
  {% csrf_token %} 
  {{ form.as_p }}

  <input type="submit" value="{% trans 'Submit' %}" />
</form>
{% endblock %}