diff --git a/oshc/main/regbackend.py b/oshc/main/regbackend.py
deleted file mode 100644
index 31b2e6d..0000000
--- a/oshc/main/regbackend.py
+++ /dev/null
@@ -1,24 +0,0 @@
-from django.contrib.auth import get_user_model
-
-
-class EmailLoginBackend(object):
- '''
- This class checks that the user can be authenticated via our backend and if it fails than normal authentication backend is used.
- '''
-
- def authenticate(self, username=None, password=None):
- user_cls = get_user_model()
- try:
- user = user_cls.objects.get(email=username)
- if user.check_password(password):
- return user
- except user_cls.DoesNotExist:
- return None
- return None
-
- def get_user(self, user_id):
- user_cls = get_user_model()
- try:
- return user_cls.objects.get(pk=user_id)
- except user_cls.DoesNotExist:
- return None
diff --git a/oshc/main/templates/base.html b/oshc/main/templates/base.html
index fca23a9..cd71109 100644
--- a/oshc/main/templates/base.html
+++ b/oshc/main/templates/base.html
@@ -35,13 +35,6 @@
-
-
{% trans "Logged out" %}
-
-
-{% endblock %}
diff --git a/oshc/main/templates/registration/password_reset_complete.html b/oshc/main/templates/registration/password_reset_complete.html
deleted file mode 100644
index c388f87..0000000
--- a/oshc/main/templates/registration/password_reset_complete.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{% extends "base.html" %}
-{% load i18n %}
-{% block content %}
-
-
- {% if validlink %}
-
- {% else %}
-
{% trans "Password reset failed" %}
- {% endif %}
-
-
-{% endblock %}
diff --git a/oshc/main/templates/registration/password_reset_done.html b/oshc/main/templates/registration/password_reset_done.html
deleted file mode 100644
index a7a1a50..0000000
--- a/oshc/main/templates/registration/password_reset_done.html
+++ /dev/null
@@ -1,9 +0,0 @@
-{% extends "base.html" %}
-{% load i18n %}
-{% block content %}
-
-
-
{% trans "Email with password reset instructions has been sent." %}
-
-
-{% endblock %}
diff --git a/oshc/main/templates/registration/password_reset_email.html b/oshc/main/templates/registration/password_reset_email.html
deleted file mode 100644
index 4628011..0000000
--- a/oshc/main/templates/registration/password_reset_email.html
+++ /dev/null
@@ -1,5 +0,0 @@
-{% load i18n %}
-{% blocktrans %}Reset password at {{ site_name }}{% endblocktrans %}:
-{% block reset_link %}
- {{ protocol }}://{{ domain }}{% url 'auth_password_reset_confirm' uid token %}
-{% endblock %}
diff --git a/oshc/main/templates/registration/password_reset_form.html b/oshc/main/templates/registration/password_reset_form.html
deleted file mode 100644
index 11bcda4..0000000
--- a/oshc/main/templates/registration/password_reset_form.html
+++ /dev/null
@@ -1,25 +0,0 @@
-{% extends "base.html" %}
-{% load i18n %}
-{% block content %}
-
-
-
{% trans "Registration is currently closed." %}
-
-
-{% endblock %}
diff --git a/oshc/main/templates/registration/registration_complete.html b/oshc/main/templates/registration/registration_complete.html
deleted file mode 100644
index b102cf7..0000000
--- a/oshc/main/templates/registration/registration_complete.html
+++ /dev/null
@@ -1,9 +0,0 @@
-{% extends "base.html" %}
-{% load i18n %}
-{% block content %}
-
-
-
{% trans "You are now registered. Activation email sent." %}
-
-
-{% endblock %}
diff --git a/oshc/main/templates/registration/registration_form.html b/oshc/main/templates/registration/registration_form.html
deleted file mode 100644
index d072436..0000000
--- a/oshc/main/templates/registration/registration_form.html
+++ /dev/null
@@ -1,45 +0,0 @@
-{% extends "base.html" %}
-{% load i18n %}
-x{% block content %}
-