mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-26 18:25:09 +01:00
18 lines
534 B
PHP
18 lines
534 B
PHP
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<meta name="csrf-token" content="{{csrf_token()}}">
|
||
|
<title>{{ env("APP_NAME") }}</title>
|
||
|
<link href=" {{ mix('css/app.css') }}" rel="stylesheet">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="app">
|
||
|
<app></app>
|
||
|
</div>
|
||
|
<script src="{{ mix('js/bootstrap.js') }}"></script>
|
||
|
<script src="{{ mix('js/app.js') }}"></script>
|
||
|
</body>
|
||
|
</html>
|