Files
test-auth/templates/sso/apipassword.html

20 lines
458 B
HTML

{% 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 %}