-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathload_msg.php
23 lines (23 loc) · 966 Bytes
/
load_msg.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<div style="display: flex; justify-content: center; align-items: center; height: 100vh; width: 100vw; pointer-events: none; background-color: white; user-select: none;" id="loading_icon_wrapper">
<img src="_gui/scads_logo.svg" class="invert_in_dark_mode" alt="Loading..." style="position: absolute; left: 10px; top: 10px; height: 8vw">
<?php
if(isset($_COOKIE["theme"])) {
if($_COOKIE["theme"] == "darkmode") {
?>
<img src="_gui/logo_small_dark.png" class="invert_in_dark_mode" alt="Loading..." style="position: absolute; right: 10px; top: 10px; height: 8vw">
<?php
} else {
?>
<img src="_gui/logo.svg" class="invert_in_dark_mode" alt="Loading..." style="position: absolute; right: 10px; top: 10px; height: 8vw">
<?php
}
} else {
?>
<img src="_gui/logo.svg" class="invert_in_dark_mode" alt="Loading..." style="position: absolute; right: 10px; top: 10px; height: 8vw">
<?php
}
?>
<div class="spinner"></div>
<br>
<div id="load_msg"></div>
</div>