22 lines
953 B
PHP
22 lines
953 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="h-full">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ config('app.name') }}</title>
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
</head>
|
|
<body class="flex min-h-full items-center justify-center bg-bg p-6 text-body antialiased">
|
|
<main class="text-center">
|
|
<h1 class="font-mono text-2xl font-semibold tracking-tight text-ink">CluPilot</h1>
|
|
<p class="mt-2 text-sm text-muted">{{ __('common.tagline') }}</p>
|
|
@if (Route::has('login'))
|
|
<a href="{{ route('login') }}"
|
|
class="mt-6 inline-flex items-center justify-center rounded bg-accent-active px-4 py-2 text-sm font-semibold text-on-accent transition hover:bg-accent-press">
|
|
{{ __('common.sign_in') }}
|
|
</a>
|
|
@endif
|
|
</main>
|
|
</body>
|
|
</html>
|