src/hdalab/templates/registration/password_reset_form.html
author cavaliet
Tue, 23 Sep 2014 15:51:35 +0200
changeset 335 51225e522007
child 384 83adb3fd0efd
permissions -rw-r--r--
little changes and auth templates in hdalab base

{% extends "base.html" %}
{% load i18n %}

{% block main_content %}
<div class="register">
	<form method="post" action=".">
	  {% csrf_token %} 
	  {{ form.as_p }}
	  <input type="submit" value="{% trans 'Submit' %}" />
	</form>
</div>
{% endblock %}