mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
18 lines
401 B
HTML
18 lines
401 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}API Services Password Reset{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<p>This service will reset your password for all API Services. If you wish to continue please click the link
|
|
below.</p>
|
|
|
|
<form action="{% url sso.views.set_apipasswd %}" method="post">
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
<input type="submit" value="Reset Account" />
|
|
</form>
|
|
|
|
{% endblock %}
|