diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2020-06-18 23:17:08 +0200 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2020-06-18 23:17:08 +0200 |
commit | fbb4637a77dc5982b4e694dd31a0aa7d11cec17c (patch) | |
tree | 2b277a09a8dacff187211cacfad7da5b5a3dda9b /templates/registration/login.html | |
download | scout-subs-fbb4637a77dc5982b4e694dd31a0aa7d11cec17c.tar.gz scout-subs-fbb4637a77dc5982b4e694dd31a0aa7d11cec17c.zip |
initial commit
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 |