mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
14 lines
259 B
HTML
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 %}
|