File size: 375 Bytes
52a3fd6
99122b8
52a3fd6
 
99122b8
 
 
 
 
52a3fd6
 
1
2
3
4
5
6
7
8
9
10
11
12
from django.urls import path
from .views import *

urlpatterns = [
    path('register/', UserRegistrationAPIView.as_view(), name='user-registration'),
    path('login/', LoginView.as_view(), name='login'),
    path('forgot-password/', ResetPasswordView.as_view(), name='forgot_password'),
    path('reset-password/', ChangePasswordView.as_view(), name='reset_password'),

]