feat: add signup form
This commit is contained in:
@@ -8,12 +8,16 @@ from wagtail.documents import urls as wagtaildocs_urls
|
||||
|
||||
from search import views as search_views
|
||||
|
||||
from .views import profile, signup
|
||||
|
||||
urlpatterns = [
|
||||
path("django-admin/", admin.site.urls),
|
||||
path("admin/", include(wagtailadmin_urls)),
|
||||
path("documents/", include(wagtaildocs_urls)),
|
||||
path("search/", search_views.search, name="search"),
|
||||
path("accounts/", include("allauth.urls")),
|
||||
path("accounts/profile/", profile, name="profile"),
|
||||
path("accounts/signup/", signup, name="signup"),
|
||||
]
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user