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

20 lines
577 B
HTML

{% extends "base.html" %}
{% block title %}Add EVE API Key{% endblock %}
{% block content %}
<p>Please fill in your API key as provided on the <a
href="http://eve-online.com/api">EVE Online API
page</a> and a optional description.</p>
<form action="{% url sso.views.eveapi_add %}" method="post">
<table>
{{ form.as_table }}
</table>
<br />
<input type="submit" value="Add Key" />
</form>
<p>Once you have added your EVE API key, don't forget to apply in game, as well as add an application through our
<a href="{% url hr.applications.add}">HR system.</a></p>
{% endblock %}