-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.php
44 lines (40 loc) · 1.12 KB
/
admin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!--Seite für alle Adminfunktionen-->
<?php
include "includes/assertLogin.php"
?>
<!DOCTYPE html>
<html>
<head>
<?php include "includes/head.php" ?>
</head>
<body>
<?php
$page = "admin";
//Einbinden von sämtlichen "Bausteinen" für den Basic Aufbau der Webseite:Bildbanner, HamburgerMenü und Navigationsleiste
include "includes/headerbox.php";
include "includes/hamburgerMenu.php";
include "includes/navigationBar.php";
?>
<h1> Adminbereich </h1>
<br><br><br>
<div align="center">
<!--Button zur Weiterleitung zur Wunschlistenverwaltung-->
<button type="button" id="basicButton" value="Check" onclick="window.location = 'admin_wl.php'">
Wunschlistenverwaltung
</button>
<br>
<!--Button zur Weiterleitung zur Medienverwaltung-->
<button type="button" id="basicButton" value="Check" onclick="window.location = 'adminMedium.php'">
Medienverwaltung
</button>
<br>
<!--Button zur Weiterleitung zur Nutzerverwaltung-->
<button type="button" id="basicButton" value="Check" onclick="window.location = 'admin_users.php'">
Nutzerverwaltung
</button>
</div>
<?php
include "includes/footerbox.php";//Einbindung Footer
?>
</body>
</html>