-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (41 loc) · 1.59 KB
/
Copy pathindex.html
File metadata and controls
41 lines (41 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!doctype html>
<!--
* CoreUI Free Vue.js Admin Template
* @version v5.2.0
* @link https://coreui.io/product/free-vue-admin-template/
* Copyright (c) 2024 creativeLabs Łukasz Holeczek
* Licensed under MIT (https://github.com/coreui/coreui-free-vue-admin-template/blob/main/LICENSE)
-->
<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.0,shrink-to-fit=no" />
<meta name="description" content="Interface de gestion - TrackIT" />
<meta name="author" content="Rundredoffi & MarinCD" />
<title>Track IT</title>
<!-- favicons for all devices -->
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link rel="manifest" href="/manifest.json" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="theme-color" content="#ffffff" />
<script>
const userMode = localStorage.getItem('coreui-free-vue-admin-template-theme')
const systemDarkMode =
window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
if (userMode === 'dark' || (userMode !== 'light' && systemDarkMode)) {
document.documentElement.dataset.coreuiTheme = 'dark'
}
</script>
</head>
<body>
<noscript>
<strong
>Nous sommes désolés, mais cette application ne fonctionne pas correctement sans JavaScript
activé. Veuillez l'activer pour continuer.</strong
>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>