mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-23 14:49:31 +00:00
26 lines
791 B
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 %}
|