feat: Add Password recuperation logic

Added:
- Phase 1 Template + Logic
- Phase 2 Template + Logic
This commit is contained in:
2026-03-20 11:32:54 +01:00
parent 351c9cd955
commit 6f9cb34b6c
16 changed files with 170 additions and 7 deletions
+3 -1
View File
@@ -45,5 +45,7 @@ urlpatterns = [
path("usuario/direcciones/<int:id>/eliminar/", views.eliminar_direccion, name="eliminar_direccion"),
path("usuario/mensajes/", views.mensajes_comprador, name="mensajes_comprador"),
path("verify/<str:code>", views.verify, name="verify"),
path("rgpd", views.rgpd, name="rgpd")
path("rgpd", views.rgpd, name="rgpd"),
path("reset-password", views.reset_password, name="reset_password"),
path("reset-password-phase2/<str:code>", views.reset_password_phase2, name="reset_password_phase2")
]