307 lines
12 KiB
PHP
307 lines
12 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="id">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>SIM-RS | RS Anak dan Bunda Harapan Kita</title>
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet">
|
|
<style>
|
|
:root {
|
|
--primary-color: #0075c9;
|
|
--secondary-color: #64c4ed;
|
|
--accent-color: #ffaa00;
|
|
--light-color: #f8fcff;
|
|
--dark-color: #124467;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Nunito', sans-serif;
|
|
background: linear-gradient(135deg, rgba(18, 68, 103, 0.95), rgba(0, 117, 201, 0.85)),
|
|
url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-attachment: fixed;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.welcome-container {
|
|
flex: 1;
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
.welcome-card {
|
|
background-color: rgba(255, 255, 255, 0.95);
|
|
border-radius: 20px;
|
|
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.welcome-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 8px;
|
|
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
|
|
}
|
|
|
|
.hospital-logo {
|
|
width: 500px;
|
|
height: 120px;
|
|
object-fit: contain;
|
|
padding: 10px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.display-title {
|
|
background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
font-weight: 800;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.subtitle {
|
|
color: var(--dark-color);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.lead-text {
|
|
color: #555;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.btn-primary-gradient {
|
|
background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
|
|
border: none;
|
|
color: white;
|
|
font-weight: 600;
|
|
padding: 12px 25px;
|
|
border-radius: 30px;
|
|
box-shadow: 0 4px 10px rgba(0, 117, 201, 0.3);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.btn-primary-gradient:hover {
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 6px 15px rgba(0, 117, 201, 0.4);
|
|
color: white;
|
|
}
|
|
|
|
.btn-outline-custom {
|
|
background: transparent;
|
|
border: 2px solid var(--primary-color);
|
|
color: var(--primary-color);
|
|
font-weight: 600;
|
|
padding: 12px 25px;
|
|
border-radius: 30px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.btn-outline-custom:hover {
|
|
background-color: var(--primary-color);
|
|
color: white;
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 6px 15px rgba(0, 117, 201, 0.2);
|
|
}
|
|
|
|
.feature-card {
|
|
border-radius: 15px;
|
|
border: none;
|
|
transition: all 0.3s ease;
|
|
background-color: white;
|
|
height: 100%;
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.feature-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.feature-icon-wrapper {
|
|
width: 80px;
|
|
height: 80px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
margin: 0 auto 15px;
|
|
background: linear-gradient(135deg, rgba(100, 196, 237, 0.2), rgba(0, 117, 201, 0.2));
|
|
}
|
|
|
|
.feature-icon {
|
|
font-size: 32px;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.feature-title {
|
|
color: var(--dark-color);
|
|
font-weight: 700;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.feature-text {
|
|
color: #666;
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.footer {
|
|
background-color: rgba(18, 68, 103, 0.95);
|
|
padding: 15px 0;
|
|
color: white;
|
|
}
|
|
|
|
.footer a {
|
|
color: var(--secondary-color);
|
|
text-decoration: none;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
.footer a:hover {
|
|
color: var(--accent-color);
|
|
}
|
|
|
|
/* Animated wave decoration */
|
|
.wave-container {
|
|
position: absolute;
|
|
bottom: -2px;
|
|
left: 0;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
line-height: 0;
|
|
z-index: -1;
|
|
}
|
|
|
|
.wave-container svg {
|
|
position: relative;
|
|
display: block;
|
|
width: calc(100% + 1.3px);
|
|
height: 120px;
|
|
}
|
|
|
|
.wave-container .shape-fill {
|
|
fill: rgba(100, 196, 237, 0.15);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="welcome-container container py-4">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-10 col-xl-9">
|
|
<div class="welcome-card p-4 p-md-5 my-4 position-relative">
|
|
<!-- Wave decoration -->
|
|
<div class="wave-container">
|
|
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
|
|
<path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" class="shape-fill"></path>
|
|
</svg>
|
|
</div>
|
|
|
|
<div class="text-center mb-5">
|
|
<img src="{{ asset('assets/images/logo.png') }}" alt="Logo RS" class="hospital-logo">
|
|
<h1 class="display-4 display-title">SELAMAT DATANG</h1>
|
|
<h2 class="h3 subtitle">Sistem Informasi Manajemen Rumah Sakit</h2>
|
|
<p class="lead lead-text mt-3">RS Anak dan Bunda Harapan Kita</p>
|
|
</div>
|
|
|
|
<div class="row justify-content-center g-4 mb-5">
|
|
{{-- <div class="col-md-5 text-center">
|
|
<a href="{{ route('pasien') }}" class="btn btn-primary-gradient btn-lg w-100 py-3">
|
|
<i class="fas fa-user-plus me-2"></i> PASIEN
|
|
</a>
|
|
</div> --}}
|
|
<div class="col-md-5 text-center">
|
|
<a href="{{ route('pasien.index') }}" class="btn btn-outline-custom btn-lg w-100 py-3">
|
|
<i class="fas fa-user-injured me-2"></i> PASIEN
|
|
</a>
|
|
</div>
|
|
<div class="col-md-5 text-center">
|
|
<a href="{{ route('registrasi') }}" class="btn btn-outline-custom btn-lg w-100 py-3">
|
|
<i class="fas fa-user me-2"></i> REGISTRASI
|
|
</a>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row justify-content-center g-4 mb-5">
|
|
<div class="col-md-5 text-center">
|
|
<a href="{{ route('asuransi.index') }}" class="btn btn-outline-custom btn-lg w-100 py-3">
|
|
<i class="fas fa-id-card-alt me-2"></i> ASURANSI
|
|
</a>
|
|
</div>
|
|
<div class="col-md-5 text-center">
|
|
<a href="{{ route('karyawan.index') }}" class="btn btn-outline-custom btn-lg w-100 py-3">
|
|
<i class="fas fa-user-md me-2"></i> KARYAWAN
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row justify-content-center g-4 mb-5">
|
|
<div class="col-md-10 text-center">
|
|
<a href="{{ route('ruangan.index') }}" class="btn btn-outline-custom btn-lg w-100 py-3">
|
|
<i class="fas fa-procedures me-2"></i> RUANG PELAYANAN
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="row g-4 mt-2">
|
|
<div class="col-md-4">
|
|
<div class="feature-card p-4">
|
|
<div class="text-center">
|
|
<div class="feature-icon-wrapper">
|
|
<i class="fas fa-user-injured feature-icon"></i>
|
|
</div>
|
|
<h5 class="feature-title">Pelayanan Pasien</h5>
|
|
<p class="feature-text mb-0">Sistem pendaftaran dan rekam medis pasien terintegrasi</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="feature-card p-4">
|
|
<div class="text-center">
|
|
<div class="feature-icon-wrapper">
|
|
<i class="fas fa-file-invoice-dollar feature-icon"></i>
|
|
</div>
|
|
<h5 class="feature-title">Billing System</h5>
|
|
<p class="feature-text mb-0">Manajemen pembayaran dan klaim asuransi kesehatan</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<div class="feature-card p-4">
|
|
<div class="text-center">
|
|
<div class="feature-icon-wrapper">
|
|
<i class="fas fa-chart-line feature-icon"></i>
|
|
</div>
|
|
<h5 class="feature-title">Laporan & Analisis</h5>
|
|
<p class="feature-text mb-0">Data kunjungan pasien dan statistik rumah sakit</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer text-center py-3">
|
|
<div class="container">
|
|
<p class="mb-0">
|
|
© 2025 RS Anak dan Bunda Harapan Kita |
|
|
<a href="#">Kebijakan Privasi</a> |
|
|
<a href="#">Kontak Kami</a>
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html> |