Fase 1 - Asset Relevance Scoring NIS2 (GV.OC-04): metodologia 0-100 a 6 criteri, AssetScoringService + endpoint scoringGrid/score/relevantSystems + UI assets.html + registro stampabile. Fase 2 - Tassonomia incidenti Determina ACN 164179/2025: IS-1..4 + regime essenziale/importante (Allegati 3/4). Fase 3 - Post-Incident Review (5-Whys) + metriche TTD/TTC/TTR + timestamp di fase. Fase 4 - Mapping NIST CSF 2.0 (43 controlli) reference-only. Fonti certe: registry config/nis2_sources.php + grounding AI (vieta riferimenti inventati) + citazioni help.js + ingest PDF normativi nella KB RAG (scripts/ingest-nis2-sources.php). Migrazioni 020/021/022 (additive idempotenti). Fix VectorService IP Qdrant (drift .5->.3). Analisi concorrenza Evix (docs/EVIX_ANALISI_CONCORRENZA.html, gap-driven). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
354 lines
12 KiB
HTML
354 lines
12 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Accesso Sistema Gestione Incidenti - NIS2</title>
|
|
<style>
|
|
:root {
|
|
--bg-primary: #0d1117;
|
|
--bg-secondary: #161b22;
|
|
--bg-tertiary: #1c2128;
|
|
--border-color: #30363d;
|
|
--text-primary: #c9d1d9;
|
|
--text-secondary: #8b949e;
|
|
--accent-primary: #58a6ff;
|
|
--accent-secondary: #1f6feb;
|
|
--success: #3fb950;
|
|
--warning: #d29922;
|
|
--danger: #f85149;
|
|
--essential-bg: #fef3c7;
|
|
--essential-text: #92400e;
|
|
--essential-border: #f59e0b;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', Helvetica, Arial, sans-serif;
|
|
background-color: var(--bg-primary);
|
|
color: var(--text-primary);
|
|
line-height: 1.6;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
padding: 20px;
|
|
}
|
|
|
|
.gate-container {
|
|
max-width: 900px;
|
|
width: 100%;
|
|
}
|
|
|
|
.gate-header {
|
|
text-align: center;
|
|
margin-bottom: 48px;
|
|
}
|
|
|
|
.gate-header h1 {
|
|
font-size: 32px;
|
|
font-weight: 700;
|
|
color: var(--text-primary);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.gate-header p {
|
|
font-size: 16px;
|
|
color: var(--text-secondary);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.warning-box {
|
|
background-color: rgba(210, 153, 34, 0.1);
|
|
border: 2px solid var(--warning);
|
|
border-radius: 8px;
|
|
padding: 24px;
|
|
margin-bottom: 48px;
|
|
}
|
|
|
|
.warning-box-title {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: var(--warning);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.warning-icon {
|
|
font-size: 24px;
|
|
}
|
|
|
|
.warning-box-content {
|
|
font-size: 14px;
|
|
color: var(--text-primary);
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.selection-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
|
gap: 24px;
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.selection-card {
|
|
background-color: var(--bg-secondary);
|
|
border: 2px solid var(--border-color);
|
|
border-radius: 8px;
|
|
padding: 32px;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.selection-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 4px;
|
|
background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
|
|
transform: scaleX(0);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.selection-card:hover {
|
|
border-color: var(--accent-primary);
|
|
transform: translateY(-4px);
|
|
box-shadow: 0 8px 24px rgba(88, 166, 255, 0.2);
|
|
}
|
|
|
|
.selection-card:hover::before {
|
|
transform: scaleX(1);
|
|
}
|
|
|
|
.selection-card.essential {
|
|
border-color: var(--essential-border);
|
|
}
|
|
|
|
.selection-card.essential:hover {
|
|
border-color: var(--essential-border);
|
|
box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
|
|
}
|
|
|
|
.selection-card.essential::before {
|
|
background: linear-gradient(90deg, var(--essential-border), var(--warning));
|
|
}
|
|
|
|
.card-badge {
|
|
display: inline-block;
|
|
padding: 6px 12px;
|
|
border-radius: 4px;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.badge-important {
|
|
background-color: rgba(88, 166, 255, 0.2);
|
|
color: var(--accent-primary);
|
|
border: 1px solid var(--accent-primary);
|
|
}
|
|
|
|
.badge-essential {
|
|
background-color: var(--essential-bg);
|
|
color: var(--essential-text);
|
|
border: 1px solid var(--essential-border);
|
|
}
|
|
|
|
.card-title {
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
color: var(--text-primary);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.card-description {
|
|
font-size: 14px;
|
|
color: var(--text-secondary);
|
|
line-height: 1.6;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.card-features {
|
|
list-style: none;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.card-features li {
|
|
font-size: 13px;
|
|
color: var(--text-primary);
|
|
padding: 8px 0;
|
|
padding-left: 24px;
|
|
position: relative;
|
|
}
|
|
|
|
.card-features li::before {
|
|
content: '✓';
|
|
position: absolute;
|
|
left: 0;
|
|
color: var(--success);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.card-button {
|
|
width: 100%;
|
|
padding: 14px 24px;
|
|
background-color: var(--bg-tertiary);
|
|
border: 2px solid var(--accent-primary);
|
|
border-radius: 6px;
|
|
color: var(--accent-primary);
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.card-button:hover {
|
|
background-color: var(--accent-primary);
|
|
color: var(--bg-primary);
|
|
}
|
|
|
|
.selection-card.essential .card-button {
|
|
border-color: var(--essential-border);
|
|
color: var(--essential-border);
|
|
}
|
|
|
|
.selection-card.essential .card-button:hover {
|
|
background-color: var(--essential-border);
|
|
color: var(--bg-primary);
|
|
}
|
|
|
|
.footer-note {
|
|
text-align: center;
|
|
font-size: 13px;
|
|
color: var(--text-secondary);
|
|
padding: 24px;
|
|
background-color: var(--bg-secondary);
|
|
border-radius: 6px;
|
|
border: 1px solid var(--border-color);
|
|
}
|
|
|
|
.footer-note strong {
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.selection-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.gate-header h1 {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="gate-container">
|
|
<div class="gate-header">
|
|
<h1>Sistema Gestione Incidenti NIS2</h1>
|
|
<p>Seleziona la tipologia del tuo soggetto per accedere alle funzionalità appropriate</p>
|
|
</div>
|
|
|
|
<div class="warning-box">
|
|
<div class="warning-box-title">
|
|
<span class="warning-icon">⚠️</span>
|
|
Accesso Obbligatorio
|
|
</div>
|
|
<div class="warning-box-content">
|
|
<strong>La conformità alla gestione incidenti è obbligatoria per TUTTI i soggetti NIS2</strong> (essenziali e importanti). La differenza sta nei tipi di incidenti da segnalare e nelle tempistiche, come definito negli Allegati 3 (soggetti essenziali) e 4 (soggetti importanti) della Determina 164179/2025.
|
|
<br><br>
|
|
Seleziona la categoria corretta per visualizzare solo i requisiti applicabili alla tua organizzazione.
|
|
</div>
|
|
</div>
|
|
|
|
<div class="selection-grid">
|
|
<div class="selection-card" onclick="selectType('important')">
|
|
<span class="card-badge badge-important">Soggetto Importante</span>
|
|
<h2 class="card-title">Soggetto Importante</h2>
|
|
<p class="card-description">
|
|
Organizzazioni che rientrano nella categoria "importanti" secondo il D.Lgs. 138/2024, con obblighi di notifica per incidenti significativi secondo Allegato 4.
|
|
</p>
|
|
<ul class="card-features">
|
|
<li>Notifica incidenti IS-1, IS-2, IS-3</li>
|
|
<li>Preallarme entro 24 ore</li>
|
|
<li>Notifica completa entro 72 ore</li>
|
|
<li>Relazione finale entro 1 mese</li>
|
|
<li>Gestione incidenti ricorrenti (IS-4) non obbligatoria</li>
|
|
</ul>
|
|
<button class="card-button">Accedi come Soggetto Importante</button>
|
|
</div>
|
|
|
|
<div class="selection-card essential" onclick="selectType('essential')">
|
|
<span class="card-badge badge-essential">Soggetto Essenziale</span>
|
|
<h2 class="card-title">Soggetto Essenziale</h2>
|
|
<p class="card-description">
|
|
Organizzazioni che rientrano nella categoria "essenziali" secondo il D.Lgs. 138/2024, con obblighi estesi di notifica per incidenti significativi secondo Allegato 3.
|
|
</p>
|
|
<ul class="card-features">
|
|
<li>Notifica incidenti IS-1, IS-2, IS-3, IS-4</li>
|
|
<li>Preallarme entro 24 ore</li>
|
|
<li>Notifica completa entro 72 ore</li>
|
|
<li>Relazione finale entro 1 mese</li>
|
|
<li>Gestione incidenti ricorrenti (IS-4) obbligatoria</li>
|
|
<li>Monitoraggio 24/7 richiesto</li>
|
|
</ul>
|
|
<button class="card-button">Accedi come Soggetto Essenziale</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer-note">
|
|
<strong>Riferimenti normativi:</strong> D.Lgs. 138/2024 (Direttiva NIS2), Determina ACN 164179/2025 (Allegati 3 e 4)<br>
|
|
<strong>Requisiti NIS2 coperti:</strong> RS.MA-01 (Gestione Incidenti), RS.CO-02 (Notifiche), RC.RP-01 (Ripristino), RC.CO-03 (Comunicazioni)
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
function selectType(type) {
|
|
// Salva la selezione in sessionStorage
|
|
sessionStorage.setItem('nis2_subject_type', type);
|
|
|
|
// Reindirizza alla dashboard
|
|
window.location.href = 'incident-dashboard.html';
|
|
}
|
|
|
|
// Verifica se c'è già una selezione
|
|
window.addEventListener('DOMContentLoaded', function() {
|
|
const savedType = sessionStorage.getItem('nis2_subject_type');
|
|
if (savedType) {
|
|
// Mostra un messaggio che sta caricando
|
|
const container = document.querySelector('.gate-container');
|
|
container.innerHTML = `
|
|
<div style="text-align: center; padding: 60px 20px;">
|
|
<h2 style="font-size: 24px; margin-bottom: 16px;">Accesso già configurato</h2>
|
|
<p style="color: var(--text-secondary); margin-bottom: 24px;">
|
|
Sei configurato come: <strong style="color: var(--text-primary);">${savedType === 'essential' ? 'Soggetto Essenziale' : 'Soggetto Importante'}</strong>
|
|
</p>
|
|
<button onclick="window.location.href='incident-dashboard.html'"
|
|
style="padding: 12px 24px; background-color: var(--accent-primary); border: none; border-radius: 6px; color: white; font-weight: 600; cursor: pointer; margin-right: 12px;">
|
|
Vai alla Dashboard
|
|
</button>
|
|
<button onclick="sessionStorage.removeItem('nis2_subject_type'); location.reload();"
|
|
style="padding: 12px 24px; background-color: var(--bg-tertiary); border: 1px solid var(--border-color); border-radius: 6px; color: var(--text-primary); font-weight: 600; cursor: pointer;">
|
|
Cambia Selezione
|
|
</button>
|
|
</div>
|
|
`;
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|