Switch from using the admin login/logout pages to custom 'lemonauth' pages
This commit is contained in:
parent
1670b6d427
commit
c210650ca7
12 changed files with 89 additions and 3 deletions
8
lemonauth/urls.py
Normal file
8
lemonauth/urls.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
from django.conf.urls import url
|
||||
from . import views
|
||||
|
||||
app_name = 'lemonauth'
|
||||
urlpatterns = [
|
||||
url('^login$', views.login, name='login'),
|
||||
url('^logout$', views.logout, name='logout'),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue