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

24 lines
789 B
HTML

{% extends "base.html" %}
{% block title %}Update EVE API Key{% endblock %}
{% block content %}
<div class="page-header">
<h1>Update EVE API Key</h1>
</div>
<p>Please update 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 eveapi-update acc.api_user_id %}" method="post">
<fieldset>
{% include "formtools/formerror.html" %}
{% 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 class="xxlarge" %}
{% csrf_token %}
<input type="submit" value="Add API Key" class="btn primary"/>
</fieldset>
</form>
{% endblock %}