diff options
author | Andrea Lepori <alepori@student.ethz.ch> | 2020-06-19 15:05:59 +0200 |
---|---|---|
committer | Andrea Lepori <alepori@student.ethz.ch> | 2020-06-19 15:05:59 +0200 |
commit | 619e0e0f5263875b753334483d9b896194e9a61d (patch) | |
tree | 861b970de54b77ad715aa9d4177eaaad384c198a /templates/registration/login.html | |
parent | initial commit (diff) | |
download | scout-subs-619e0e0f5263875b753334483d9b896194e9a61d.tar.gz scout-subs-619e0e0f5263875b753334483d9b896194e9a61d.zip |
More data for users
Diffstat (limited to 'templates/registration/login.html')
-rw-r--r-- | templates/registration/login.html | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/templates/registration/login.html b/templates/registration/login.html index 71880b3..9459f93 100644 --- a/templates/registration/login.html +++ b/templates/registration/login.html @@ -1,12 +1,20 @@ -{% extends 'registration/base.html' %} +{% extends 'registration/base_simple.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> + <div class="row"> + <div class="col l4 offset-l4 m8 offset-m2 s12"> + <div class="card"> + <div class="card-content"> + <form method="post"> + {% csrf_token %} + {{ form.as_p }} + <br> + <button class="btn waves-effect waves-light" type="submit">Login</button> + </form> + </div> + </div> + </div> + </div> {% endblock %}
\ No newline at end of file |