Digital Rights Management für elektronische Patientenakten
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

password_reset_form.html 312B

123456789101112
  1. {% extends "base_generic.html" %}
  2. {% block content %}
  3. <form action="" method="post">
  4. {% csrf_token %}
  5. {% if form.email.errors %}
  6. {{ form.email.errors }}
  7. {% endif %}
  8. <p>{{ form.email }}</p>
  9. <input type="submit" class="btn btn-default btn-lg" value="Reset password">
  10. </form>
  11. {% endblock %}