django-multipage-template-f.../app/app_template/templates/pages/login.html
Andros Fenollosa 12ba5461fd First commit
2022-04-19 21:14:01 +02:00

8 lines
232 B
HTML

<h1>Login</h1>
<form id="login-form">
{% if user_does_not_exist %}
<h2>The user does not exist or the password is wrong.</h2>
{% endif %}
{{ form.as_p }}
<input type="submit" class="button" value="Login">
</form>