mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-13 22:32:15 +00:00
20 lines
480 B
HTML
20 lines
480 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}External Service Account Password Reset{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<p>This service will reset your password for account {{ acc.service_uid }} on {{ acc.service }}. If you wish to continue please click the link
|
|
below.</p>
|
|
|
|
<form action="{% url sso.views.service_reset serviceid %}" method="post">
|
|
<table>
|
|
{{ form.as_table }}
|
|
{% csrf_token %}
|
|
</table>
|
|
<br />
|
|
<input type="submit" value="Reset Account" />
|
|
</form>
|
|
|
|
{% endblock %}
|