from django.urls import path from .views import regView urlpatterns = [ path("reg/", regView.as_view(),name="reg") ]