35 lines
1.3 KiB
PHP
35 lines
1.3 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', 'SPK - SMK 1 TAPEN') }}</title>
|
|
|
|
<!-- Fonts -->
|
|
<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="stylesheet" href="{{asset('css/app.css')}}">
|
|
|
|
<!-- Scripts -->
|
|
|
|
</head>
|
|
<body class="font-sans text-gray-900 antialiased">
|
|
<div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 ">
|
|
<div class="flex flex-col items-center">
|
|
<a href="/">
|
|
<img src="{{ asset('assets/images/Logo_LKS-1.png') }}" alt="Logo SPK LKS" class="w-32 h-32">
|
|
</a>
|
|
<p class="text-center text-gray-600">SPK - Analtycal Hierarcy Process</p>
|
|
</div>
|
|
|
|
<div class="w-full sm:max-w-md mt-2 px-6 py-4 overflow-hidden sm:rounded-lg">
|
|
{{ $slot }}
|
|
</div>
|
|
</div>
|
|
|
|
<script src="{{asset('js/app.js')}}"></script>
|
|
</body>
|
|
</html>
|