multiuser/subscriptions/notifications
This commit is contained in:
19
accounts/urls.py
Normal file
19
accounts/urls.py
Normal file
@@ -0,0 +1,19 @@
|
||||
from django.urls import path
|
||||
from django.contrib.auth import views as auth_views
|
||||
from . import views
|
||||
|
||||
app_name = 'accounts'
|
||||
|
||||
urlpatterns = [
|
||||
path('login/', views.jellyfin_login, name='login'),
|
||||
path('logout/', auth_views.LogoutView.as_view(), name='logout'),
|
||||
path('register/', views.RegisterView.as_view(), name='register'),
|
||||
path('profile/', views.profile, name='profile'),
|
||||
path('password_change/', auth_views.PasswordChangeView.as_view(
|
||||
template_name='accounts/password_change.html',
|
||||
success_url='done/'
|
||||
), name='password_change'),
|
||||
path('password_change/done/', auth_views.PasswordChangeDoneView.as_view(
|
||||
template_name='accounts/password_change_done.html'
|
||||
), name='password_change_done'),
|
||||
]
|
Reference in New Issue
Block a user