layerindex-web/templates/registration/password_reset_form.html
Paul Eggleton 93be8b1172 Move all templates to a templates directory
This should allow the templates to be found and swapped out more easily.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2013-03-06 16:55:23 +00:00

20 lines
403 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block content %}
<form id="password_form" method="post" action=".">
{{ form.as_p }}
<input type="submit" class="btn" value="{% trans 'Submit' %}" />
</form>
{% endblock %}
{% block scripts %}
<script>
$(document).ready(function() {
$("#password_form input:text, #password_form textarea").first().focus();
});
</script>
{% endblock %}