43 lines
1.9 KiB
PHP
43 lines
1.9 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="scroll-smooth">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<link rel="icon" href="{{ asset('favicon.svg') }}" type="image/svg+xml">
|
|
<link rel="manifest" href="{{ asset('manifest.webmanifest') }}">
|
|
<meta name="theme-color" content="#0D1424">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-title" content="HomeOS">
|
|
<link rel="apple-touch-icon" href="{{ asset('apple-touch-icon.png') }}">
|
|
<title>{{ __('auth.title') }} · {{ __('common.app_name') }}</title>
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
@livewireStyles
|
|
</head>
|
|
<body class="min-h-dvh antialiased">
|
|
<div class="min-h-dvh flex items-center justify-center px-5 py-10">
|
|
<div class="w-full max-w-[400px] flex flex-col gap-6">
|
|
{{-- brand --}}
|
|
<div class="flex items-center gap-3">
|
|
<span class="logo-mark grid place-items-center w-10 h-10 rounded-[11px] text-accent">
|
|
<x-icon name="dashboard" :size="20" />
|
|
</span>
|
|
<span class="leading-tight">
|
|
<span class="block font-extrabold text-lg tracking-[0.02em] text-ink">{{ __('common.app_name') }}</span>
|
|
<span class="block text-[10px] font-semibold uppercase tracking-[0.14em] text-ink-3">{{ __('common.app_tagline') }}</span>
|
|
</span>
|
|
</div>
|
|
|
|
{{ $slot }}
|
|
|
|
<p class="flex items-center justify-center gap-1.5 text-[11px] text-ink-3">
|
|
<x-icon name="lock" :size="12" />
|
|
{{ __('auth.secured') }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
@livewireScripts
|
|
</body>
|
|
</html>
|