mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
23 lines
582 B
HTML
23 lines
582 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Change Services Password{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="page-header">
|
|
<h1>Change Services Password</h1>
|
|
</div>
|
|
|
|
<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">
|
|
<fieldset>
|
|
{% include "formtools/formfield.html" with field=form.password %}
|
|
{% csrf_token %}
|
|
<input type="submit" value="Reset Account" class="btn primary" />
|
|
</fieldset>
|
|
</form>
|
|
|
|
{% endblock %}
|