mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
20 lines
458 B
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 %}
|