Files
test-auth/templates/sso/lookup/userlookup.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

14 lines
259 B
HTML

{% extends "base.html" %}
{% block title %}User Lookup{% endblock %}
{% block content %}
<form action="{% url sso.views.user_lookup %}" method="post">
<table>
{{ form.as_table }}
</table>
<br />
<input type="submit" value="Lookup" />
</form>
{% endblock %}