mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-23 14:49:31 +00:00
25 lines
713 B
HTML
25 lines
713 B
HTML
{% extends "base.html" %}
|
|
|
|
{% load gargoyle_tags %}
|
|
|
|
{% block title %}Add EVE API Key{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% ifswitch eve-cak %}
|
|
<p>Please fill in your API key details and a optional description. You can create a API key on the <a href="https://support.eveonline.com/api/Key/CreatePredefined/59638024/0/false">API support site</a></p>
|
|
{% else %}
|
|
<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>
|
|
{% endifswitch %}
|
|
|
|
<form action="{% url eve_api.views.eveapi_add %}" method="post">
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
<br />
|
|
{% csrf_token %}
|
|
<input type="submit" value="Add Key" />
|
|
</form>
|
|
|
|
{% endblock %}
|