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'), ]