make remixicon local

This commit is contained in:
2024-02-04 10:16:51 +01:00
parent 7828553752
commit d53d0b1f54
11 changed files with 16522 additions and 8 deletions

View File

File diff suppressed because it is too large Load Diff

View File

Binary file not shown.

View File

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 2.3 MiB

View File

Binary file not shown.

View File

Binary file not shown.

View File

Binary file not shown.

View File

@@ -14,6 +14,8 @@ loadRouterConfig();
$canRender = initRouter();
if ($canRender) {
/** @noinspection PhpArrayIsAlwaysEmptyInspection */
/** @noinspection PhpArrayIsAlwaysEmptyInspection */
session_set_cookie_params(0, '/', "." . $routerRequest["domain"] . "." . $routerRequest["tld"], true, true);
session_start();
@@ -21,10 +23,13 @@ if ($canRender) {
setDefaultSessionData();
}
/** @noinspection PhpArrayIsAlwaysEmptyInspection */
if ($routerRequest["type"] == "api") {
/** @noinspection PhpArrayIsAlwaysEmptyInspection */
echo getEndpoint($routerRequest["page_name"]);
} elseif ($routerRequest["type"] == "page") {
} /** @noinspection PhpArrayIsAlwaysEmptyInspection */ elseif ($routerRequest["type"] == "page") {
/** @noinspection PhpArrayIsAlwaysEmptyInspection */
echo getPage($routerRequest["page_name"]);
}
}

View File

@@ -112,12 +112,12 @@ function getPage($page_name = null): array|false|string
$page_title = $page_name;
}
$dynastyle = "<style>";
$dynamic_style = "<style>";
if(isLoggedIn() && !empty($_SESSION["favorite_color"]) && is_int($_SESSION["favorite_color"]) && $_SESSION["favorite_color"] <= 4294967295){
$color = dechex($_SESSION["favorite_color"]);
$dynastyle .= "--root{ --favorite-color: #$color;";
$dynamic_style .= "--root{ --favorite-color: #$color;";
}
$dynastyle .= "</style>";
$dynamic_style .= "</style>";
$navpages = generateNavigation();
@@ -126,6 +126,6 @@ function getPage($page_name = null): array|false|string
$out = $skeleton;
$out = str_replace("__TEMPLATE__NAV__", $nav, $out);
$out = str_replace("__TEMPLATE__PAGE__", $page, $out);
$out = str_replace("__TEMPLATE__DYNASTYLE__", $dynastyle, $out);
$out = str_replace("__TEMPLATE__DYNASTYLE__", $dynamic_style, $out);
return str_replace("__TEMPLATE_PAGE_TITLE__", $page_title, $out);
}

View File

@@ -26,7 +26,7 @@
<li>
<strong>Super admini:</strong>
<ul>
<li>Robíme celý server..</li>
<li>Robíme celý server.</li>
<li>Vďaka nám je AdlerkaSMP<br>bezpečné miesto.</li>
</ul>
</li>

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/remixicon/4.1.0/remixicon.min.css" integrity="sha512-i5VzKip7owqOGjb0YTF8MR2J9yBVO3FLHeazKzLp354XYTmKcqEU3UeFYUw82R8tV6JqxeATOfstCfpfPhbyEA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="/assets/3rdparty/fonts/remixicon/remixicon.css">
<link rel="stylesheet" href="/assets/style.css">
<script src="/assets/script.js"></script>
<script async src="https://umami.brn.systems/script.js" data-website-id="95e93885-5c19-4cab-ba9b-2f746a316a2a"></script>

View File

@@ -1,6 +1,6 @@
<script>
function changePassword() {
const oldPassword = document.getElementById("changeoldPassword").value;
const oldPassword = document.getElementById("changeOldPassword").value;
const newPassword = document.getElementById("changeNewPassword").value;
const data = new URLSearchParams();