Move templates into app directories

This commit is contained in:
2011-05-27 13:13:56 +01:00
parent 6be048030b
commit 87bb229656
17 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{% extends "base.html" %}
{% block title %}External Auth API Services Password Reset{% endblock %}
{% block content %}
<p>This service will reset your password for all External Auth API Services. If you wish to continue please enter a new
password below.</p>
<form action="{% url sso.views.set_apipasswd %}" method="post">
<table>
{{ form.as_table }}
</table>
<br />
{% csrf_token %}
<input type="submit" value="Reset Account" />
</form>
{% endblock %}