2019-05-28 17:29:15 +02:00
|
|
|
<!DOCTYPE html>
|
2023-12-05 14:41:57 +01:00
|
|
|
<html data-theme="{{ $defaultPreferences['theme'] }}" lang="{{ $lang }}">
|
2019-05-28 17:29:15 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
2023-02-19 22:59:20 +01:00
|
|
|
<meta name="description" content="{{ __('commons.2fauth_description') }}" lang="{{ $lang }}">
|
2020-09-29 22:46:03 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0, shrink-to-fit=no, viewport-fit=cover">
|
2019-05-28 17:29:15 +02:00
|
|
|
<meta name="csrf-token" content="{{csrf_token()}}">
|
2020-01-12 20:12:25 +01:00
|
|
|
<meta name="robots" content="noindex, nofollow">
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
2020-03-24 13:24:33 +01:00
|
|
|
<title>{{ config('app.name') }}</title>
|
2020-01-12 23:02:47 +01:00
|
|
|
|
|
|
|
<link rel="shortcut icon" href="{{ asset('favicon.ico') }}" />
|
|
|
|
<link rel="icon" type="image/png" href="{{ asset('favicon.png') }}" />
|
|
|
|
<link rel="apple-touch-icon" href="{{ asset('favicon_lg.png') }}" />
|
|
|
|
<link rel="apple-touch-icon-precomposed" href="{{ asset('favicon_lg.png') }}" />
|
|
|
|
<link rel="manifest" href="/manifest.json">
|
2023-01-20 17:36:15 +01:00
|
|
|
|
2019-05-28 17:29:15 +02:00
|
|
|
</head>
|
2023-02-01 17:21:55 +01:00
|
|
|
<body>
|
2019-05-28 17:29:15 +02:00
|
|
|
<div id="app">
|
|
|
|
<app></app>
|
|
|
|
</div>
|
2020-02-27 16:58:04 +01:00
|
|
|
<script type="text/javascript">
|
2020-03-11 16:32:19 +01:00
|
|
|
var appSettings = {!! $appSettings !!};
|
2022-05-16 22:55:50 +02:00
|
|
|
var appConfig = {!! $appConfig !!};
|
2023-12-05 14:41:57 +01:00
|
|
|
var defaultPreferences = {!! $defaultPreferences->toJson() !!};
|
2022-03-28 17:09:29 +02:00
|
|
|
var appVersion = '{{ config("2fauth.version") }}';
|
2022-05-10 08:57:45 +02:00
|
|
|
var isDemoApp = {!! $isDemoApp !!};
|
2022-07-07 16:39:57 +02:00
|
|
|
var isTestingApp = {!! $isTestingApp !!};
|
2021-12-03 22:50:28 +01:00
|
|
|
var appLocales = {!! $locales !!};
|
2020-02-27 16:58:04 +01:00
|
|
|
</script>
|
2023-12-05 14:41:57 +01:00
|
|
|
@vite('resources/js/app.js')
|
2019-05-28 17:29:15 +02:00
|
|
|
</body>
|
|
|
|
</html>
|