Use accounts/ prefix for accounts router

This commit is contained in:
Alexandre Iooss 2021-10-08 11:10:08 +02:00
parent 61eadc9d60
commit 22e0b7dc27
2 changed files with 2 additions and 2 deletions

View file

@ -2,5 +2,5 @@ from django.urls import path
from .views import signup
urlpatterns = [
path('', signup, name='registration'),
path('registration/', signup, name='registration'),
]