diff options
Diffstat (limited to 'templates/registration/login.html')
-rw-r--r-- | templates/registration/login.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/registration/login.html b/templates/registration/login.html new file mode 100644 index 0000000..71880b3 --- /dev/null +++ b/templates/registration/login.html @@ -0,0 +1,12 @@ +{% extends 'registration/base.html' %} + +{% block title %}Login{% endblock %} + +{% block content %} +<h2>Login</h2> +<form method="post"> + {% csrf_token %} + {{ form.as_p }} + <button class="btn waves-effect waves-light" type="submit">Login</button> +</form> +{% endblock %}
\ No newline at end of file |