MIF_E31222756/resources/views/layouts/auth.blade.php

118 lines
3.7 KiB
PHP

<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@yield('title') - UPTD Laboratorium Lingkungan</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
background-color: #f5f5f5;
min-height: 100vh;
display: flex;
align-items: center;
}
.auth-container {
margin: 30px auto;
border: 1px solid #ddd;
border-radius: 5px;
overflow: hidden;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.auth-sidebar {
background-color: #28a745;
color: white;
padding: 30px 20px;
text-align: center;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
.auth-sidebar img {
width: 80px;
margin-bottom: 15px;
}
.auth-sidebar .logo-container {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 15px;
}
.auth-sidebar h3 {
font-size: 1.2rem;
text-align: center;
margin-bottom: 20px;
font-weight: bold;
}
.auth-content {
padding: 30px;
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
}
.auth-title {
text-align: center;
color: #28a745;
margin-bottom: 30px;
font-weight: bold;
}
.form-control {
border-radius: 0;
margin-bottom: 15px;
}
.btn-auth {
background-color: #28a745;
color: white;
border: none;
border-radius: 0;
padding: 10px;
width: 100%;
margin-top: 10px;
text-transform: uppercase;
}
.radio-label {
margin-right: 15px;
}
.auth-footer {
text-align: center;
margin-top: 20px;
font-size: 0.9rem;
}
.auth-footer a {
color: #28a745;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-10">
<div class="auth-container">
<div class="row g-0">
<div class="col-md-5">
<div class="auth-sidebar">
<div class="logo-container">
<img src="{{ asset('images/logobulat.jpg') }}" alt="Logo Kota" class="me-2">
<img src="{{ asset('images/logosegitiga.png') }}" alt="Logo Dinas">
</div>
<h3>UPTD LABORATORIUM LINGKUNGAN PADA DINAS LINGKUNGAN HIDUP KOTA PROBOLINGGO</h3>
</div>
</div>
<div class="col-md-7">
<div class="auth-content">
@yield('content')
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>