11 lines
387 B
Python
11 lines
387 B
Python
from django.urls import include, path
|
|
from django.views.generic import TemplateView
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("", views.HomePageView.as_view(), name="index"),
|
|
path("accounts/signup/", views.SignupView.as_view(), name="signup"),
|
|
path("accounts/", include("django.contrib.auth.urls")),
|
|
path("legal/", TemplateView.as_view(template_name="privacy.html")),
|
|
]
|