login.html: eye toggle, forgot password, auth-terms footer register.html: wizard 3-step, 5 ruoli NIS2, invite_token URL, P.IVA lookup onboarding.html: Font Awesome, brand color cyan (#06B6D4) test-runner.php: L1-L5 test levels, SIM-06 B2B, tab Coverage/Stats, DB row counts, run history (localStorage), 5 tabs totali Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
145 lines
6.5 KiB
HTML
145 lines
6.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Accedi - NIS2 Agile</title>
|
|
<link rel="stylesheet" href="css/style.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
|
<style>
|
|
.pw-wrap { position: relative; }
|
|
.pw-wrap .form-input { padding-right: 42px; }
|
|
.pw-toggle {
|
|
position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
|
|
background: none; border: none; cursor: pointer;
|
|
color: #9CA3AF; font-size: 15px; padding: 0; transition: color .2s;
|
|
}
|
|
.pw-toggle:hover { color: var(--color-primary, #2563eb); }
|
|
.forgot-link {
|
|
display: block; text-align: center; margin-top: 10px;
|
|
font-size: .78rem; color: #6B7280; text-decoration: none; transition: color .2s;
|
|
}
|
|
.forgot-link:hover { color: var(--color-primary, #2563eb); }
|
|
.auth-terms {
|
|
margin-top: 14px; padding-top: 14px;
|
|
border-top: 1px solid var(--border-color, #e5e7eb);
|
|
text-align: center; font-size: .72rem; color: #9CA3AF; line-height: 1.8;
|
|
}
|
|
.auth-terms a { color: #6B7280; text-decoration: underline; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="auth-page">
|
|
<div class="auth-card">
|
|
<div class="auth-header">
|
|
<div class="auth-logo">
|
|
<div class="auth-logo-icon">
|
|
<svg viewBox="0 0 24 24" fill="currentColor">
|
|
<path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 2.18l7 3.12v4.7c0 4.83-3.23 9.36-7 10.57-3.77-1.21-7-5.74-7-10.57V6.3l7-3.12z"/>
|
|
<path d="M10 12.5l-2-2-1.41 1.41L10 15.32l5.41-5.41L14 8.5l-4 4z"/>
|
|
</svg>
|
|
</div>
|
|
<span class="auth-logo-text">NIS2 <span>Agile</span></span>
|
|
</div>
|
|
<p class="auth-subtitle">Piattaforma di compliance NIS2</p>
|
|
</div>
|
|
|
|
<div class="auth-body">
|
|
<div class="auth-error" id="login-error"></div>
|
|
|
|
<form id="login-form" novalidate>
|
|
<div class="form-group">
|
|
<label class="form-label" for="email">Indirizzo Email</label>
|
|
<input type="email" id="email" name="email" class="form-input"
|
|
placeholder="nome@azienda.it" autocomplete="email" required>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="form-label" for="password">Password</label>
|
|
<div class="pw-wrap">
|
|
<input type="password" id="password" name="password" class="form-input"
|
|
placeholder="La tua password" autocomplete="current-password" required>
|
|
<button type="button" class="pw-toggle" id="pw-toggle" tabindex="-1"
|
|
onclick="(function(){var i=document.getElementById('password'),b=document.getElementById('pw-toggle');if(i.type==='password'){i.type='text';b.innerHTML='<i class=\'fas fa-eye-slash\'></i>';}else{i.type='password';b.innerHTML='<i class=\'fas fa-eye\'></i>';}})()" aria-label="Mostra/nascondi password">
|
|
<i class="fas fa-eye"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary btn-lg w-full" id="login-btn">
|
|
Accedi
|
|
</button>
|
|
<a href="#" class="forgot-link" onclick="alert('Contatta presidenza@agile.software per il reset password.');return false;">
|
|
Password dimenticata?
|
|
</a>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="auth-footer">
|
|
<p>Non hai un account? <a href="register.html">Registrati</a></p>
|
|
<div class="auth-terms">
|
|
Accedendo accetti i nostri
|
|
<a href="https://agentai.agile.software/terms" target="_blank">Termini di Servizio</a>
|
|
e la <a href="https://agentai.agile.software/privacy" target="_blank">Privacy Policy</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="js/api.js"></script>
|
|
<script src="js/common.js"></script>
|
|
<script>
|
|
// Se gia' autenticato, vai alla dashboard
|
|
if (api.isAuthenticated()) {
|
|
window.location.href = 'dashboard.html';
|
|
}
|
|
|
|
const form = document.getElementById('login-form');
|
|
const errorEl = document.getElementById('login-error');
|
|
const loginBtn = document.getElementById('login-btn');
|
|
|
|
form.addEventListener('submit', async (e) => {
|
|
e.preventDefault();
|
|
errorEl.classList.remove('visible');
|
|
|
|
const email = document.getElementById('email').value.trim();
|
|
const password = document.getElementById('password').value;
|
|
|
|
if (!email || !password) {
|
|
errorEl.textContent = 'Inserisci email e password.';
|
|
errorEl.classList.add('visible');
|
|
return;
|
|
}
|
|
|
|
loginBtn.disabled = true;
|
|
loginBtn.textContent = 'Accesso in corso...';
|
|
|
|
try {
|
|
const result = await api.login(email, password);
|
|
|
|
if (result.success) {
|
|
const isConsultant = result.data.user && result.data.user.role === 'consultant';
|
|
const hasOrgs = result.data.organizations && result.data.organizations.length > 0;
|
|
if (!hasOrgs) {
|
|
window.location.href = 'onboarding.html';
|
|
} else if (isConsultant) {
|
|
window.location.href = 'companies.html';
|
|
} else {
|
|
window.location.href = 'dashboard.html';
|
|
}
|
|
} else {
|
|
errorEl.textContent = result.message || 'Credenziali non valide.';
|
|
errorEl.classList.add('visible');
|
|
}
|
|
} catch (err) {
|
|
errorEl.textContent = 'Errore di connessione al server.';
|
|
errorEl.classList.add('visible');
|
|
} finally {
|
|
loginBtn.disabled = false;
|
|
loginBtn.textContent = 'Accedi';
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|