sexta parte 2

This commit is contained in:
2026-05-22 22:42:41 -03:00
parent b61692bfe0
commit b0f7ca641d
17 changed files with 107 additions and 48 deletions

4
accounts/urls.py Normal file
View File

@@ -0,0 +1,4 @@
from django.urls import path
from accounts.views import AccountCreateView
urlpatterns = [ path('accounts/signup/', AccountCreateView.as_view(), name='signup')]