inital checkin

This commit is contained in:
2026-01-20 05:22:38 -06:00
parent 9784e14c77
commit c43603bfb5
75 changed files with 4327 additions and 0 deletions

15
users/urls.py Normal file
View File

@@ -0,0 +1,15 @@
from django.urls import path
from . import views
app_name = 'users'
urlpatterns = [
path('register/', views.RegisterView.as_view(), name='register'),
path('profile/', views.profile_view, name='profile'),
path('vault/', views.vault_view, name='vault'),
path('upgrade/', views.upgrade_account_view, name='upgrade_account'),
path('profile/address/add/', views.add_address_view, name='add_address'),
path('profile/payment/add/', views.add_payment_method_view, name='add_payment_method'),
path('profile/address/delete/<int:pk>/', views.delete_address_view, name='delete_address'),
path('profile/payment/delete/<int:pk>/', views.delete_payment_method_view, name='delete_payment_method'),
]