80 lines
2.2 KiB
PHP
80 lines
2.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ $title ?? 'Auth' }}</title>
|
|
<link rel="icon" href="{{ asset('images/pustaka.jpeg') }}" type="image/png">
|
|
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
|
|
|
<style>
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
margin: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
background: url('/images/bg1.jpeg') no-repeat center center;
|
|
background-size: cover;
|
|
position: relative;
|
|
}
|
|
|
|
.overlay {
|
|
position: absolute;
|
|
top: 0; left: 0; right: 0; bottom: 0;
|
|
backdrop-filter: blur(6px);
|
|
background: rgba(0,0,0,0.4);
|
|
z-index: 0;
|
|
}
|
|
|
|
.auth-card {
|
|
position: relative;
|
|
z-index: 1;
|
|
background: white;
|
|
border-radius: 16px;
|
|
padding: 30px;
|
|
width: 90%;
|
|
max-width: 480px;
|
|
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
|
|
transform: translateY(-50px);
|
|
opacity: 0;
|
|
animation: slideFadeIn 0.6s forwards;
|
|
}
|
|
|
|
@keyframes slideFadeIn {
|
|
to { transform: translateY(0); opacity: 1; }
|
|
}
|
|
|
|
.header-bar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.form-control:focus {
|
|
border-color: #0d47a1;
|
|
box-shadow: 0 0 0 0.2rem rgba(13,71,161,0.25);
|
|
}
|
|
|
|
.btn-primary, .btn-success {
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.btn-primary:hover, .btn-success:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 6px 12px rgba(0,0,0,0.2);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="overlay"></div>
|
|
{{ $slot }}
|
|
</body>
|
|
</html>
|
|
|