2016-11-25 64 views
0

我遇到django allauth登錄頁面的問題。我能夠完成教程django all-auth,但是當我嘗試http://localhost/accounts/login/時,我遇到了登錄頁面的問題,沒有任何內容顯示,但只有一個空白頁面。登錄頁面無法顯示在django all-auth

而本教程並未顯示如何創建登錄頁面,所以我想這是我應該工作的最後一步。

我做了什麼到現在爲止是這樣的,

settings.py

INSTALLED_APPS = (
    'django.contrib.sites', 
    'allauth', 
    'allauth.account', 
    'allauth.socialaccount', 
    'allauth.socialaccount.providers.google', 
) 

SOCIALACCOUNT_PROVIDERS = {'google': {'SCOPE': ['email'], 
    'AUTH_PARAMS': {'access_type': 'online'} 
} 
} 

# Django all auth settings 
AUTHENTICATION_BACKENDS = (
    # Needed to login by username in Django admin, regardless of `allauth` 
    'django.contrib.auth.backends.ModelBackend', 

    # `allauth` specific authentication methods, such as login by e-mail 
    'allauth.account.auth_backends.AuthenticationBackend', 
) 

SITE_ID = 1 

urls.py

url(r'^accounts/', include('allauth.urls')), 

此外,我已經添加了Django管理社交應用程序,它需要領域。

非常感謝您的噓聲,您的幫助非常感謝。

+0

你到現在爲止做了什麼?發佈您的代碼 –

+0

runserver使用哪個端口?你有沒有嘗試過:http:// localhost:8000/accounts/login / – ratatoskr

回答