diff options
-rw-r--r-- | pytask/templates/registration/login.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pytask/templates/registration/login.html b/pytask/templates/registration/login.html new file mode 100644 index 0000000..9063e64 --- /dev/null +++ b/pytask/templates/registration/login.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} + +{% load form_helpers %} + +{% block content %} + {% url auth_login as login_url %} + {% as_div_form form "Login Form" csrf_token "Login" login_url %} + <a href="{% url auth_password_reset %}">Forgot password?</a> +{% endblock %} |