Files
test-auth/templates/sso/serviceaccount/index.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

25 lines
680 B
HTML

{% extends "base.html" %}
{% block title %}Add External Service Account{% endblock %}
{% block content %}
<p>To add a service to your account, select the service from the list
below
then provide select a username you wish to use create the account for<br/>
<br/>
For details on how to connect to each service, please consult the <a
href="http://wiki.dredd.it">wiki</a></p>
<p>If you are missing some services, please check that your API key is
up to date, if so use the "Refresh" function.</p>
<form action="{% url sso.views.service_add %}" method="post">
<table>
{{ form.as_table }}
</table>
<br />
<input type="submit" value="Create Account" />
</form>
<br/>
{% endblock %}