Files
test-auth/app/eve_api/templates/eve_api/add.html

26 lines
791 B
HTML

{% extends "base.html" %}
{% block title %}Add EVE API Key{% endblock %}
{% block content %}
<div class="page-header">
<h1>Add EVE API Key</h1>
</div>
<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>
<form action="{% url eve_api.views.eveapi_add %}" method="post">
<formset>
{% include "formtools/formfield.html" with field=form.api_user_id %}
{% include "formtools/formfield.html" with field=form.api_key class="xxlarge"%}
<!--{% include "formtools/formfield.html" with field=form.description %}-->
{% csrf_token %}
<input type="submit" value="Add API Key" class="btn primary"/>
</formset>
</form>
{% endblock %}