saving works now
This commit is contained in:
13
backend/accounts/urls.py
Normal file
13
backend/accounts/urls.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from django.contrib.auth.views import LoginView, LogoutView
|
||||
from django.urls import path
|
||||
from backend.accounts import views as v
|
||||
|
||||
urlpatterns = [
|
||||
path(
|
||||
'login/',
|
||||
LoginView.as_view(template_name='accounts/login.html'),
|
||||
name='login'
|
||||
),
|
||||
path('logout/', LogoutView.as_view(), name='logout'),
|
||||
path('signup/', v.SignUpView.as_view(), name='signup'),
|
||||
]
|
||||
Reference in New Issue
Block a user