2FAuth/resources/views/landing.blade.php

29 lines
1.2 KiB
PHP
Raw Normal View History

2019-05-28 17:29:15 +02:00
<!DOCTYPE html>
<html class="has-background-black-ter">
2019-05-28 17:29:15 +02:00
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0, shrink-to-fit=no">
2019-05-28 17:29:15 +02:00
<meta name="csrf-token" content="{{csrf_token()}}">
<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">
2019-05-28 17:29:15 +02:00
<title>{{ env("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">
2019-05-28 17:29:15 +02:00
<link href=" {{ mix('css/app.css') }}" rel="stylesheet">
</head>
<body class="has-text-lighter">
2019-05-28 17:29:15 +02:00
<div id="app">
<app></app>
</div>
<script src="{{ mix('js/bootstrap.js') }}"></script>
<script src="{{ mix('js/app.js') }}"></script>
<script src="{{ mix('js/vue-i18n-locales.generated.js') }}"></script>
2019-05-28 17:29:15 +02:00
</body>
</html>