27 lines
971 B
HTML
27 lines
971 B
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
|
|
<meta name="theme-color" content="#0f1114">
|
|
<script>
|
|
(function () {
|
|
try {
|
|
var saved = localStorage.getItem("theme");
|
|
var theme = saved === "light" || saved === "dark" ? saved : "dark";
|
|
document.documentElement.setAttribute("data-theme", theme);
|
|
} catch (e) {}
|
|
})();
|
|
</script>
|
|
<title>Комптон — первоначальная настройка</title>
|
|
<link rel="stylesheet" href="/static/css/wesp-logo-loader.css">
|
|
<link rel="stylesheet" href="/static/css/wesp-setup.css">
|
|
</head>
|
|
<body>
|
|
<div id="wespSetupRoot" class="wesp-setup"></div>
|
|
<script src="/static/js/kiosk-calibration.js"></script>
|
|
<script src="/static/js/wesp-user-messages.js?v=1"></script>
|
|
<script type="module" src="/static/js/pages/setup-wizard.js"></script>
|
|
</body>
|
|
</html>
|