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) <noreply@anthropic.com>
This commit is contained in:
parent
0ef07e25b4
commit
fa80c6dab9
1 changed files with 15 additions and 0 deletions
|
|
@ -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=
|
||||
'<p class="text-xs font-bold text-red-800 mb-2">⚠ FCC Enforcement Penalties for Non-Compliance</p>'+
|
||||
'<ul class="text-xs text-red-700 space-y-1 list-disc pl-4">'+
|
||||
'<li><strong>RMD violations:</strong> Up to $500,000 per violation for false or missing information (47 U.S.C. § 503(b)). Carriers removed from the RMD are blocked from originating calls on the US phone network.</li>'+
|
||||
'<li><strong>CPNI violations:</strong> Up to $239,071 per violation, $2,390,706 per continuing violation (47 CFR § 1.80). Annual certification is mandatory — failure to file triggers enforcement proceedings.</li>'+
|
||||
'<li><strong>499-A non-filing:</strong> USAC Red Light status blocks all FCC applications, license renewals, and equipment authorizations until resolved. Late fees and interest accrue on unpaid USF contributions.</li>'+
|
||||
'<li><strong>CALEA non-compliance:</strong> Court-enforced penalties up to $10,000 per day of non-compliance (47 U.S.C. § 229).</li>'+
|
||||
'<li><strong>Registration forfeiture:</strong> The FCC may revoke or deactivate carrier registrations for persistent non-compliance, effectively shutting down operations.</li>'+
|
||||
'</ul>'+
|
||||
'<p class="text-xs text-red-600 mt-2 italic">Resolving these filings now costs a fraction of a single enforcement action.</p>';
|
||||
listEl.appendChild(penaltyBox);
|
||||
|
||||
// Re-attach preserved form if it exists
|
||||
if(existingForm && selectedSlugs.length > 0) {
|
||||
listEl.appendChild(existingForm);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue