55 lines
2.2 KiB
PHP
55 lines
2.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="it" class="h-full bg-slate-950">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>NetGescon - Aggiornamento Completato con Successo</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script>
|
|
tailwind.config = {
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter', 'sans-serif'],
|
|
},
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<style>
|
|
.glass {
|
|
background: rgba(15, 23, 42, 0.65);
|
|
backdrop-filter: blur(16px);
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
body {
|
|
background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 40%),
|
|
#020617;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="h-full text-slate-100 flex items-center justify-center py-12 px-4 sm:px-6 lg:px-8 font-sans">
|
|
|
|
<div class="max-w-md w-full glass rounded-2xl p-8 shadow-2xl text-center space-y-6">
|
|
<div class="mx-auto flex items-center justify-center h-16 w-16 rounded-full bg-emerald-950/50 border border-emerald-500/30 text-emerald-400">
|
|
<svg class="h-8 w-8" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M5 13l4 4L19 7" />
|
|
</svg>
|
|
</div>
|
|
|
|
<div class="space-y-2">
|
|
<h2 class="text-xl font-bold text-white">Dati Registrati con Successo!</h2>
|
|
<p class="text-xs text-slate-400">
|
|
La dichiarazione anagrafica e catastale per l'unità Scala {{ $unita->scala }} Int. {{ $unita->interno }} è stata acquisita e validata tramite firma OTP.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="text-xxs text-slate-500 border-t border-slate-800 pt-4">
|
|
Puoi chiudere questa scheda. I dati sono stati storicizzati in sicurezza nel cloud drive consolidato dell'amministratore.
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|