mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-02-02 03:29:20 +01:00
22 lines
916 B
PHP
22 lines
916 B
PHP
<!DOCTYPE html>
|
|
<html class="has-background-black-ter">
|
|
<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">
|
|
<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">
|
|
<title>{{ env("APP_NAME") }}</title>
|
|
<link href=" {{ mix('css/app.css') }}" rel="stylesheet">
|
|
</head>
|
|
<body class="has-text-lighter">
|
|
<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>
|
|
</body>
|
|
</html> |