92 lines
1.9 KiB
HTML
92 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="hu">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="../../css/login.css">
|
|
<title>Belépés sikeres</title>
|
|
</head>
|
|
<style>
|
|
:root {
|
|
--color-primary: #2180a8;
|
|
--color-bg-primary: #fcfcf9;
|
|
--color-text-primary: #134252;
|
|
--color-success: #22c55e;
|
|
--color-white: #ffffff;
|
|
--radius-base: 8px;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
background: var(--color-bg-primary);
|
|
color: var(--color-text-primary);
|
|
}
|
|
|
|
.acontainer {
|
|
text-align: center;
|
|
background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%,rgba(0,0,0,0.2) 100%);
|
|
padding: 48px 40px;
|
|
border-radius: var(--radius-base);
|
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
|
|
max-width: 400px;
|
|
}
|
|
|
|
.success-icon {
|
|
width: 64px;
|
|
height: 64px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0 auto 24px;
|
|
background: rgba(34, 197, 94, 0.1);
|
|
border-radius: 50%;
|
|
font-size: 32px;
|
|
color: var(--color-success);
|
|
}
|
|
|
|
.success-icon img {
|
|
border-radius: 50px;
|
|
width: 96px;
|
|
height: 96px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
color: #f5f5f5;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
p {
|
|
font-size: 16px;
|
|
color: #f5f5f5;
|
|
line-height: 1.5;
|
|
opacity: 0.8;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div class="bg"></div>
|
|
<div class="acontainer">
|
|
<div class="success-icon"><img src="../../img/success.gif"></div>
|
|
<h1>Sikeresen belépve</h1>
|
|
<p>Ha az ablak nem záródik be magától, nyugodtan zárja be</p>
|
|
</div>
|
|
|
|
<script>
|
|
setTimeout(() => {
|
|
window.close();
|
|
}, 3000);
|
|
</script>
|
|
</body>
|
|
</html>
|