renator's picture
Updated
99122b8
raw
history blame contribute delete
375 Bytes
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'),
]