diff --git a/requirements/base.txt b/requirements/base.txt
index 2c55f0f..e04f50b 100644
--- a/requirements/base.txt
+++ b/requirements/base.txt
@@ -17,5 +17,3 @@ PyJWT
pytz
requests
requests-oauthlib
-social-auth-app-django
-social-auth-core
diff --git a/src/kasu/settings.py b/src/kasu/settings.py
index 9af87a5..3f3f30f 100644
--- a/src/kasu/settings.py
+++ b/src/kasu/settings.py
@@ -49,7 +49,6 @@ PREREQ_APPS = [
'ckeditor',
'ckeditor_uploader',
'easy_thumbnails',
- 'social_django',
]
PROJECT_APPS = [
'kasu',
@@ -103,8 +102,6 @@ TEMPLATES = [
'django.contrib.messages.context_processors.messages',
'django.contrib.messages.context_processors.messages',
'events.context_processors.events_overview',
- 'social_django.context_processors.backends',
- 'social_django.context_processors.login_redirect'
],
'loaders': [
('django.template.loaders.cached.Loader', [
@@ -132,24 +129,10 @@ DEFAULT_FROM_EMAIL = ""
# Login Settings
ACCOUNT_ACTIVATION_DAYS = 5
AUTH_USER_MODEL = 'membership.Membership'
-AUTHENTICATION_BACKENDS = ('social_core.backends.facebook.FacebookOAuth2',
- 'social_core.backends.google.GoogleOAuth2',
- 'social_core.backends.twitter.TwitterOAuth',
- 'django.contrib.auth.backends.ModelBackend',)
+AUTHENTICATION_BACKENDS = ('django.contrib.auth.backends.ModelBackend',)
LOGIN_URL = '/membership/login/'
LOGIN_ERROR_URL = '/membership/login/error/'
LOGIN_REDIRECT_URL = '/users/'
-SOCIAL_AUTH_CHANGE_SIGNAL_ONLY = False
-SOCIAL_AUTH_ENABLED_BACKENDS = ('facebook-oauth2', 'google-oauth2', 'twitter')
-SOCIAL_AUTH_NEW_USER_REDIRECT_URL = '/users/'
-SOCIAL_AUTH_SLUGIFY_USERNAMES = True
-SOCIAL_AUTH_FACEBOOK_KEY = ''
-SOCIAL_AUTH_FACEBOOK_SECRET = ''
-SOCIAL_AUTH_FACEBOOK_SCOPE = ['user_about_me', 'email']
-SOCIAL_AUTH_GOOGLE_OAUTH2_KEY = ''
-SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET = ''
-SOCIAL_AUTH_TWITTER_KEY = ''
-SOCIAL_AUTH_TWITTER_SECRET = ''
# Localization
USE_I18N = True
diff --git a/src/kasu/templates/base.html b/src/kasu/templates/base.html
index bb6a392..14e5dff 100644
--- a/src/kasu/templates/base.html
+++ b/src/kasu/templates/base.html
@@ -185,12 +185,6 @@
{% trans "no user logged in" %} -
{% trans "register" %}
{% trans "login" %}
-
-
-
{% endif %}