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);