Update web/users.html
Browse files- web/users.html +9 -2
web/users.html
CHANGED
|
@@ -11,8 +11,15 @@
|
|
| 11 |
<link rel="stylesheet" href="css/simplebar.css">
|
| 12 |
<link href="https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100;0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
| 13 |
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 14 |
-
<
|
| 15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
</head>
|
| 17 |
|
| 18 |
<body class="vertical light">
|
|
|
|
| 11 |
<link rel="stylesheet" href="css/simplebar.css">
|
| 12 |
<link href="https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100;0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
| 13 |
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 14 |
+
<script>
|
| 15 |
+
(function() {
|
| 16 |
+
var dark = localStorage.getItem('theme') === 'dark';
|
| 17 |
+
document.write(
|
| 18 |
+
'<link rel="stylesheet" href="css/app-' + (dark ? 'dark' : 'light') + '.css" id="' + (dark ? 'dark' : 'light') + 'Theme">' +
|
| 19 |
+
'<link rel="stylesheet" href="css/app-' + (dark ? 'light' : 'dark') + '.css" id="' + (dark ? 'light' : 'dark') + 'Theme" disabled>'
|
| 20 |
+
);
|
| 21 |
+
})();
|
| 22 |
+
</script>
|
| 23 |
</head>
|
| 24 |
|
| 25 |
<body class="vertical light">
|