divio / django-simple-sso

Other
307 stars 116 forks source link

'simple-sso-login' not found. 'simple-sso-login' is not a valid view function or pattern name #68

Open macolo opened 2 years ago

macolo commented 2 years ago

TBD

sccox commented 2 years ago

@macolo on your server you'll want to add: from django.contrib.auth import views as auth_views

path('login/', auth_views.LoginView.as_view(), name='login'), to urls.py and you'll also need to configure your templates and add a login view.