Files
test-auth/templates/registration/registration_form.html
Siebren Bakker 4ea56f11f2 Added a newline between form tables and submit button to better identify it visually.
Added a link to the HR page from the EVE API page to better point out the need to submit an application.
2010-08-06 12:55:25 -05:00

19 lines
351 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block title %}Create Account{% endblock %}
{% block content %}
<h2>Create Account</h2>
<p>Please fill in the following form.</p>
<form method="post" action=".">
<table>
{{ form }}
</table>
<br />
<input type="submit" value="{% trans "Create Account" %}" />
</form>
{% endblock %}