Files
qgreper/templates/login.html
2022-10-07 14:37:18 +02:00

10 lines
240 B
HTML

{% extends 'base.html' %}
{% block content %}
<form method="post">
<p>Username: <input type="text" name="username"></p>
<p>Password: <input type="password" name="password"></p>
<input type="submit" value="Login">
</form>
{% endblock %}