mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
13 lines
228 B
HTML
13 lines
228 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}User Lookup{% endblock %}
|
|
|
|
{% block content %}
|
|
<form action="/users/" method="post">
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
<input type="submit" value="Lookup" />
|
|
</form>
|
|
{% endblock %}
|