mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
17 lines
399 B
HTML
17 lines
399 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>
|
|
<input type="submit" value="Add Key" />
|
|
</form>
|
|
{% endblock %}
|