131 lines
3.3 KiB
PHP
131 lines
3.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Selamat Datang</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Poppins', sans-serif;
|
|
background: url("{{ asset('images/background1.jpg') }}") no-repeat center center fixed;
|
|
background-size: cover;
|
|
color: white;
|
|
position: relative;
|
|
height: 100vh;
|
|
}
|
|
|
|
/* ✨ Overlay hanya di belakang */
|
|
.overlay {
|
|
position: fixed;
|
|
top: 0; left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
z-index: 0;
|
|
}
|
|
|
|
/* ✅ Navbar tetap di atas overlay */
|
|
nav {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 20px 50px;
|
|
background: linear-gradient(to right, rgba(110, 231, 183, 0.8), rgba(147, 197, 253, 0.8));
|
|
backdrop-filter: blur(5px);
|
|
-webkit-backdrop-filter: blur(5px);
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
nav .logo {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
color: white;
|
|
}
|
|
|
|
nav ul {
|
|
list-style: none;
|
|
display: flex;
|
|
gap: 30px;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
nav ul li a {
|
|
color: white;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
nav ul li a:hover {
|
|
color: #bbdefb;
|
|
}
|
|
|
|
/* ✅ Kotakan tetap gradasi dan di atas overlay */
|
|
.container {
|
|
text-align: center;
|
|
margin-top: 150px;
|
|
max-width: 600px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding: 40px;
|
|
border-radius: 16px;
|
|
color: white;
|
|
position: relative;
|
|
z-index: 1;
|
|
background: linear-gradient(to right, #6ee7b7, #93c5fd);
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
h1 {
|
|
font-size: 32px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 20px;
|
|
color: white;
|
|
}
|
|
|
|
.btn {
|
|
padding: 12px 24px;
|
|
background: #1565c0;
|
|
color: white;
|
|
border-radius: 8px;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
transition: 0.3s;
|
|
}
|
|
|
|
.btn:hover {
|
|
background: #0d47a1;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- ✨ Overlay latar belakang -->
|
|
<div class="overlay"></div>
|
|
|
|
<!-- ✅ Navbar transparan dan di atas overlay -->
|
|
<nav>
|
|
<div class="logo">DataSiswa</div>
|
|
<ul>
|
|
<li><a href="#">Home</a></li>
|
|
<li><a href="#">About</a></li>
|
|
<li><a href="#">Contact</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<!-- ✅ Kotak gradasi -->
|
|
<div class="container">
|
|
<h1>Selamat Datang di Aplikasi Data Siswa</h1>
|
|
<p>Kelola data siswa dengan mudah dan cepat.</p>
|
|
<a href="{{ route('login') }}" class="btn">Mulai Login</a>
|
|
</div>
|
|
</body>
|
|
</html>
|