Files
Sander Dorigo 8a79bb7720 Update JS views
2026-06-24 11:28:39 +02:00

43 lines
1.8 KiB
PHP

<!doctype html>
<html lang="{{ __('config.html_language') }}">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta name="robots" content="noindex, nofollow, noarchive, noodp, NoImageIndex, noydir">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<!--
If the base href URL begins with "http://" but you are sure it should start with "https://",
please visit the following page: https://bit.ly/FF3-broken-base-href
-->
<base href="{{ route('index', null, true) }}/">
<title>{{ __('firefly.login_page_title') }}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"/>
<meta name="theme-color" content="#007bff" media="(prefers-color-scheme: light)"/>
<meta name="theme-color" content="#1a1a1a" media="(prefers-color-scheme: dark)"/>
<meta name="color-scheme" content="light dark">
@vite(['sass/app.scss'])
<x-layout.fav-icons/>
<script nonce="{{ $JS_NONCE }}">
(() => {
'use strict'
document.documentElement.setAttribute('data-bs-theme', (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'))
})()
</script>
</head>
<body class="login-page bg-body-secondary">
<div class="login-box">
<div class="login-logo">
<img src="images/logo-session.png" width="68" height="100" alt="Firefly III Logo" title="Firefly III"/><br>
<a href='https://demo.firefly-iii.org'><b>Firefly</b> III</a>
</div>
@yield('content')
</div>
@vite(['js/pages/generic.js'])
@yield('scripts')
</body>
</html>