From fa80c6dab944a34b572a30af0a090414c1cfa58f Mon Sep 17 00:00:00 2001 From: justin Date: Sat, 9 May 2026 11:11:26 -0500 Subject: [PATCH] Add FCC penalty warnings below order total on checkout page Shows specific penalty amounts for each filing type: - RMD: $500K per violation, network disconnection - CPNI: $239K per violation, $2.39M continuing - 499-A: USAC Red Light blocks all FCC applications - CALEA: $10K/day court-enforced - Registration forfeiture for persistent non-compliance Co-Authored-By: Claude Opus 4.6 (1M context) --- site/public/order/fcc-compliance/index.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/site/public/order/fcc-compliance/index.html b/site/public/order/fcc-compliance/index.html index 5f7e0bc..9bad977 100644 --- a/site/public/order/fcc-compliance/index.html +++ b/site/public/order/fcc-compliance/index.html @@ -338,6 +338,21 @@ function renderServices() { summary.innerHTML=rows; listEl.appendChild(summary); + // FCC penalty warning + var penaltyBox=document.createElement("div"); + penaltyBox.className="mt-3 p-4 bg-red-50 border border-red-200 rounded-lg"; + penaltyBox.innerHTML= + '

⚠ FCC Enforcement Penalties for Non-Compliance

'+ + ''+ + '

Resolving these filings now costs a fraction of a single enforcement action.

'; + listEl.appendChild(penaltyBox); + // Re-attach preserved form if it exists if(existingForm && selectedSlugs.length > 0) { listEl.appendChild(existingForm);