Add Login page

This commit is contained in:
Sonny 2019-07-20 09:57:10 +02:00
parent b1c5be61f1
commit 679414a703
34 changed files with 6545 additions and 2 deletions

View 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"),
]