diff options
Diffstat (limited to 'templates/login.html')
-rw-r--r-- | templates/login.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/login.html b/templates/login.html new file mode 100644 index 0000000..2167d15 --- /dev/null +++ b/templates/login.html @@ -0,0 +1,10 @@ +{% extends "default.html" %} + +{% block main %} + <form class="form-signin" method="post"> + {% csrf_token %} + <h2 class="form-signin-heading">Please sign in</h2> + {{ form.as_p }} + <button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button> + </form> +{% endblock main %} |