Further template updates

This commit is contained in:
2010-03-01 02:46:57 +01:00
parent 8a119204c2
commit 0f7d9f80de
4 changed files with 24 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
{% 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>
@@ -6,3 +11,4 @@ page</a></p>
{{ form.as_p }}
<input type="submit" value="Submit" />
</form>
{% endblock %}

View File

@@ -1,4 +1,15 @@
{% extends "base.html" %}
{% block title %}Add Service Account{% endblock %}
{% block content %}
<p>To add a service to your account, selec the service from the list below
then provide a username and password you wish to use to connect.<br/>
<br/>
For details on how to connect to each service, please consult the <a
href="http://wiki.dredd.it">wiki</a></p>
<form action="/profile/add/service" method="post">
{{ form.as_p }}
<input type="submit" value="Submit" />
</form>
{% endblock %}