Files
nrml_dashboard/dashboard/resources/views/layouts/guest.blade.php
2026-06-22 15:39:35 +07:00

79 lines
2.0 KiB
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>{{ config('app.name', 'NRML Dashboard') }}</title>
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" href="{{ asset('images/nrml-logo.png') }}">
@vite(['resources/css/app.css', 'resources/js/app.js'])
</head>
<body class="font-sans bg-gray-100 text-gray-900">
<!-- Header -->
<header class="bg-green-600 shadow">
<div class="max-w-12xl mx-auto px-6 py-4 flex items-center">
<img src="{{ asset('images/nrml-logo.png') }}" alt="NRML Logo"
class="h-12 w-12 bg-white rounded-full p-1 mr-12 ">
<h1 class="text-xl font-semibold text-white ml-4">
National Reference Medical Laboratory Surveillance Dashboard
</h1>
</div>
</header>
<!-- Content -->
<main class="min-h-[calc(100vh-80px)] flex items-center justify-center p-6">
<div class="w-full max-w-md">
<div class="text-center mb-6">
<img src="{{ asset('images/nrml-logo.png') }}" alt="NRML Logo" class="w-28 h-28 mx-auto">
<h2 class="mt-4 text-2xl font-bold text-gray-800">
User Login
</h2>
<p class="text-gray-500 mt-2">
Sign in to access the surveillance dashboard
</p>
</div>
<div class="bg-white rounded-lg shadow-md border">
<div class="p-8">
{{ $slot }}
</div>
</div>
<div class="text-center text-sm text-gray-500 mt-6">
National Institute of Public Health (NIPH)
</div>
</div>
</main>
</body>
</html>