Files
Hasscall/app/templates/auth/login.html
T

13 lines
370 B
HTML

{% extends 'base/layout.html' %}
{% block main %}
{{ super() }}
<form method="post">
<label for="username">Username</label><br>
<input name="username" id="username" required><br>
<label for="password">Password</label><br>
<input type="password" name="password" id="password" required>
<input type="submit" value="Log In">
</form>
{% endblock %}