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