diff --git a/templates/registration/login.html b/templates/registration/login.html deleted file mode 100644 index 908fc5f..0000000 --- a/templates/registration/login.html +++ /dev/null @@ -1,47 +0,0 @@ -{% extends "base.html" %} - -{% block content %} - - - -{% if form.errors %} -
- Your username and password didn't match. Please try again or click "Lost password?" to reset your password. -
-{% endif %} - -{% if next %} - {% if user.is_authenticated %} -
- Your account doesn't have access to this page. To proceed, please login with an account that has access. -
- {% else %} -
- Please login to see this page. -
- {% endif %} -{% endif %} - -
-{% csrf_token %} -
- {{ form.username.label_tag }} - -
-
- {{ form.password.label_tag }} - -
- - - -
- -{# Assumes you setup the password_reset view in your URLconf #} -

Lost password?

- -{% endblock %}