mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-24 07:09:31 +00:00
24 lines
789 B
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 %}
|