Merge pull request 'Add_Git_Notification' (#23) from Add_Git_Notification into develop
Reviewed-on: #23
This commit is contained in:
commit
bd47dda496
2 changed files with 22 additions and 12 deletions
|
@ -45,5 +45,16 @@ $resource = $resources->getResource($resourceEntry);
|
||||||
<span class="h1">PROTOTYPE / POC</span>
|
<span class="h1">PROTOTYPE / POC</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="position-fixed bottom-0 start-0 m-3 fs-6">
|
||||||
|
<a href="https://git.php.fail/neintonine/gamesshop/issues/new" class="nav-link text-muted mb-3">
|
||||||
|
<i class="fa-solid fa-bug fa-xl me-3"></i>
|
||||||
|
You found a bug? Please report it.
|
||||||
|
</a>
|
||||||
|
<a href="https://git.php.fail/neintonine/gamesshop" class="nav-link text-muted">
|
||||||
|
<i class="fa-brands fa-git-alt me-3 fa-xl"></i>
|
||||||
|
Interested to help? Checkout the git repository.
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -29,25 +29,24 @@ $currentPermission = $activeUser === null ? UserPermission::NONE : $activeUser->
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
<li class="nav-link">
|
<li class="nav-link">
|
||||||
<a href="<?= $header->link ?>" class="nav-link"><?= $header->title ?></a>
|
<a href="<?= $header->link ?>" class="nav-link"><?= $header->title ?></a>
|
||||||
</li>
|
</li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<div class="d-flex mode-switch me-4">
|
||||||
|
<button title="Use dark mode" id="dark" class="btn btn-sm btn-default text-secondary">
|
||||||
|
<i class="fa-regular fa-moon"></i>
|
||||||
|
</button>
|
||||||
|
<button title="Use light mode" id="light" class="btn btn-sm btn-default text-secondary">
|
||||||
|
<i class="fa-regular fa-sun"></i>
|
||||||
|
</button>
|
||||||
|
<button title="Use system preferred mode" id="system" class="btn btn-sm btn-default text-secondary">
|
||||||
|
<i class="fa-solid fa-display"></i>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
<?= $this->insert('layout/accountDisplay'); ?>
|
<?= $this->insert('layout/accountDisplay'); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="d-flex mode-switch me-3">
|
|
||||||
<button title="Use dark mode" id="dark" class="btn btn-sm btn-default text-secondary">
|
|
||||||
<i class="fa-regular fa-moon"></i>
|
|
||||||
</button>
|
|
||||||
<button title="Use light mode" id="light" class="btn btn-sm btn-default text-secondary">
|
|
||||||
<i class="fa-regular fa-sun"></i>
|
|
||||||
</button>
|
|
||||||
<button title="Use system preferred mode" id="system" class="btn btn-sm btn-default text-secondary">
|
|
||||||
<i class="fa-solid fa-display"></i>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</nav>
|
</nav>
|
Loading…
Reference in a new issue