Files
test-auth/templates/apipassword.html
Siebren Bakker 4ea56f11f2 Added a newline between form tables and submit button to better identify it visually.
Added a link to the HR page from the EVE API page to better point out the need to submit an application.
2010-08-06 12:55:25 -05:00

19 lines
463 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 }}
</table>
<br />
<input type="submit" value="Reset Account" />
</form>
{% endblock %}