mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
15 lines
338 B
HTML
15 lines
338 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Add EVE API Key{% endblock %}
|
|
|
|
{% block content %}
|
|
<p>Please fill in your API key as provided on the <a
|
|
href="http://eve-online.com/api">EVE Online API
|
|
page</a></p>
|
|
|
|
<form action="/profile/add/eveapi" method="post">
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Submit" />
|
|
</form>
|
|
{% endblock %}
|