diff --git a/app/controllers/OrderApiController.asp b/app/controllers/OrderApiController.asp index 890fb56..748c821 100644 --- a/app/controllers/OrderApiController.asp +++ b/app/controllers/OrderApiController.asp @@ -1,4 +1,4 @@ -<% +<% ' Auto-generated Controller: OrderApi ' Generated on 7/28/2026 2:56:29 PM ' Generator: generateController.vbs v1.0 @@ -60,6 +60,7 @@ Class OrderApiController_Class Exit Sub End If + Dim csrfToken : csrfToken = Request.ServerVariables("HTTP_X_CSRF_TOKEN") If Not HTMLSecurity().IsValidAntiCSRFToken("Order.Continue", csrfToken) Then WriteJsonError "403 Forbidden", "Your form session expired. Please refresh the page and try again." @@ -113,6 +114,7 @@ Class OrderApiController_Class End If On Error GoTo 0 + ' Best-effort: the order is already safely persisted at this point, so an SMTP hiccup ' should not turn a successful submission into a failed one. OrderMailer().SendOrderDetailsEmail order, model @@ -131,3 +133,9 @@ Function OrderApiController() Set OrderApiController = OrderApiController_Class__Singleton End Function %> + + + + + + diff --git a/app/controllers/OrderController.asp b/app/controllers/OrderController.asp index c83e00c..3403f7c 100644 --- a/app/controllers/OrderController.asp +++ b/app/controllers/OrderController.asp @@ -1,4 +1,4 @@ -<% +<% Class OrderController_Class Private m_useLayout Private m_title @@ -69,3 +69,5 @@ Function OrderController() Set OrderController = OrderController_Class__Singleton End Function %> + + diff --git a/app/views/Home/index.asp b/app/views/Home/index.asp index 0e2cf97..00e0a04 100644 --- a/app/views/Home/index.asp +++ b/app/views/Home/index.asp @@ -1,4 +1,4 @@ -
+
Election mail production made simple @@ -136,7 +136,7 @@
-
+
Need a custom production quote? @@ -145,3 +145,9 @@ Request pricing
+ + + + + + diff --git a/app/views/shared/footer.asp b/app/views/shared/footer.asp index 1966515..ffd6b56 100644 --- a/app/views/shared/footer.asp +++ b/app/views/shared/footer.asp @@ -1,8 +1,34 @@ - + - - + + + diff --git a/app/views/shared/header.asp b/app/views/shared/header.asp index 5ad764d..11d758e 100644 --- a/app/views/shared/header.asp +++ b/app/views/shared/header.asp @@ -1,4 +1,4 @@ - + <% Response.Charset = "utf-8" Response.CodePage = 65001 @@ -41,21 +41,21 @@ If Len(pageTitle) = 0 Then pageTitle = "Classic ASP Starter Template" - -