This commit is contained in:
Valeria Fadeeva 2025-06-18 15:25:18 +05:00
parent f0d5c31f50
commit 9fcf25b724
1 changed files with 15 additions and 10 deletions

View File

@ -677,6 +677,7 @@
></path>
</symbol>
</svg>
<div
class="dropdown position-fixed bottom-0 start-0 mb-3 me-3 bd-mode-toggle"
>
@ -750,6 +751,7 @@
</li>
</ul>
</div>
<svg xmlns="http://www.w3.org/2000/svg" class="d-none">
<symbol id="check" viewBox="0 0 16 16">
<title>Check</title>
@ -758,6 +760,7 @@
></path>
</symbol>
</svg>
<div class="container py-3" id="main_content">
<header>
<div
@ -1496,6 +1499,7 @@
</table>
</div>
</main>
<footer class="pt-4 my-md-5 pt-md-5 border-top">
<div class="row">
<div class="col-12 col-md">
@ -1652,6 +1656,7 @@
</div>
</footer>
</div>
<script
src="/static/node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"
class="astro-vvvwv3sm"
@ -1839,18 +1844,18 @@
.addEventListener("submit", handleFormSubmit);
});
function showPage() {
document.getElementById("loader").style.display = "none";
document.getElementById("main_content").style.display = "block";
}
function showPage() {
document.getElementById("loader").style.display = "none";
document.getElementById("main_content").style.display = "block";
}
let showPage_var;
let showPage_var;
function ready() {
showPage_var = setTimeout(showPage, 1000);
}
function ready() {
showPage_var = setTimeout(showPage, 1000);
}
document.addEventListener("DOMContentLoaded", ready);
</script>
document.addEventListener("DOMContentLoaded", ready);
</script>
</body>
</html>