gestionale2025/resources/views/welcome.blade.php
2025-08-05 14:10:01 +02:00

85 lines
1.9 KiB
PHP

<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Gestionale - Benvenuto</title>
<style>
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
background: #f4f6f8;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.container {
text-align: center;
background: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
max-width: 400px;
width: 100%;
}
.logo {
font-size: 32px;
font-weight: bold;
color: #2c3e50;
margin-bottom: 20px;
}
.description {
font-size: 16px;
color: #555;
margin-bottom: 30px;
}
input[type="text"], input[type="password"] {
width: 100%;
padding: 10px;
margin: 8px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
width: 100%;
padding: 10px;
background-color: #2c3e50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #34495e;
}
.links {
margin-top: 20px;
font-size: 14px;
}
.links a {
color: #2c3e50;
text-decoration: none;
margin: 0 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="logo">Gestionale Famigliare</div>
<div class="description">Benvenuto nel sistema di gestione. Accedi per iniziare.</div>
<!-- <input type="text" placeholder="Nome utente" required>
<input type="password" placeholder="Password" required> -->
<a href="/login" class="button"">Accedi</a>
<div class="links">
<a href="#">Recupera password</a> |
<a href="#">Contatta supporto</a>
</div>
</div>
</body>
</html>