diff --git a/archivist/apps/templates/accounts/login.html b/archivist/apps/templates/accounts/login.html index 6a5d6b5..63213a5 100644 --- a/archivist/apps/templates/accounts/login.html +++ b/archivist/apps/templates/accounts/login.html @@ -34,7 +34,7 @@
-
+ {% csrf_token %} diff --git a/archivist/apps/templates/accounts/register.html b/archivist/apps/templates/accounts/register.html deleted file mode 100644 index 7f25140..0000000 --- a/archivist/apps/templates/accounts/register.html +++ /dev/null @@ -1,101 +0,0 @@ -{% extends "layouts/base-fullscreen.html" %} - -{% load static %} - -{% block title %} Sign up {% endblock %} - -{% block body_class %}{% endblock %} - - -{% block stylesheets %}{% endblock stylesheets %} - -{% block content %} - -{% include 'includes/navigation-transparent.html' %} - - -
-
- - -

- - Sign up -

- -
-

- {% if msg %} - {{ msg | safe }} - {% else %} - Enter your email and password to register - {% endif %} -

-
- - {% csrf_token %} - -
- {{ form.username }} -
- {{ form.username.errors }} - -
- {{ form.email }} -
- {{ form.email.errors }} - -
- {{ form.password1 }} -
- {{ form.password1.errors }} - -
- {{ form.password2 }} -
- {{ form.password2.errors }} - -
- - -
-
- -
-

- Already have an account? - Sign in -

- - - -
- {% include 'includes/footer-auth.html' %} - -
- -{% endblock content %} - - -{% block javascripts %}{% endblock javascripts %} -