forked from alexusmai/vue-laravel-file-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (23 loc) · 795 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="/favicon.ico"/>
<title>Laravel file manager</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
</head>
<body>
<noscript>
<strong>
We're sorry but file-manager doesn't work properly without JavaScript enabled. Please enable it to continue.
</strong>
</noscript>
<div class="container">
<div id="fm" style="height: 700px"></div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>