navbar anpassungen + footer anpassungen + webhook.php

This commit is contained in:
2026-04-21 21:44:40 +02:00
parent aaa7e0ad50
commit 85158ba8e1
4 changed files with 71 additions and 10 deletions
+12 -5
View File
@@ -1,10 +1,12 @@
<!--
Globales Menü, wird via PHP später in alle Seiten eingebunden
-->
<nav>
<img src="../images/logo.png" style="height: 44px; ">
<a href = "../content/informatik.php" style = "color: white; padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Informatik</b></a>
<nav style="background:#808080;">
<div style="float:left">
<a href="../index.php">
<img src="../images/logo.png" style="height: 44px;">
</a>
<a href = "../content/informatik.php" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Informatik</b></a>
|
<a href = "../content/mathe.php" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Mathe</b></a>
|
@@ -12,11 +14,16 @@ Globales Menü, wird via PHP später in alle Seiten eingebunden
|
<a href = "../content/profile.php" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Dein Profil</b></a>
|
</div>
<div style="text-align: center;">
<?php
include_once '../includes/search.php';
include_once 'search.php';
?>
</div>
<div style="float:right">
|
<a href = "../auth/login.php" style = "background-color: #f44336; color: white; padding: 4px 20px; text-align: center; text-decoration: none; display: inline-block;"> Anmelden </a>
<a href = "../auth/register.php" style = "background-color: #f44336; color: white; padding: 4px 20px; text-align: center; text-decoration: none; display: inline-block;"> Registrieren </a>
</div>
</nav>