RANDOMSEC-19 #2

Merged
s470625 merged 12 commits from RANDOMSEC-19 into master 2022-01-25 16:47:25 +01:00
Showing only changes of commit 03b521702e - Show all commits

View File

@ -22,8 +22,8 @@ from .views import SignUpView
urlpatterns = [
path('admin/', admin.site.urls),
path('accounts/', include('django.contrib.auth.urls')),
path('accounts/signup/', SignUpView.as_view(), name='signup'),
path('', include('django.contrib.auth.urls')),
path('signup/', SignUpView.as_view(), name='signup'),
path('', TemplateView.as_view(template_name='home.html'), name='home'),
path('favicon.ico', RedirectView.as_view(url=staticfiles_storage.url('images/favicon.ico'))),
]