Add Login page
This commit is contained in:
parent
b1c5be61f1
commit
679414a703
34 changed files with 6545 additions and 2 deletions
9
src/newsreader/accounts/urls.py
Normal file
9
src/newsreader/accounts/urls.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
from django.urls import include, path
|
||||
|
||||
from newsreader.accounts.views import LoginView, LogoutView
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
path("login/", LoginView.as_view(), name="login"),
|
||||
path("logout/", LogoutView.as_view(), name="logout"),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue