feat: created file for registration of actions and a file for functions; started first tests with form for work entries

This commit is contained in:
Ioannis20x
2025-07-07 07:04:13 +00:00
parent d772a6dc29
commit 3479fd9e1d
4 changed files with 60 additions and 46 deletions

8
functions.php Normal file
View File

@@ -0,0 +1,8 @@
<?php
function insertentry(){
}
function
?>

View File

@@ -1,17 +1,22 @@
<?php
session_start();
?>
<nav>
<a href="index.php">Startseite</a>
<?php if (isset($_SESSION['user']) && $_SESSION['user']['hasRole']): ?>
<a href="admin.php">Admin-Menü</a>
<?php endif; ?>
<?php if (isset($_SESSION['user'])): ?>
<a href="logout.php">Logout</a>
<?php else: ?>
<a href="loginform.php">Login</a>
<?php endif; ?>
</nav>
<div class="navbar">
<div class="navbar-links" id="mobileMenu">
<a href="index.php">🏠 Home</a>
<?php if ($_SESSION['user']['hasRole']): ?>
<a href="admin.php">✍️ Eintragung</a>
<div class="dropdown">
<a href="#">📂 Verwaltung ▼</a>
<div class="dropdown-content">
<a href="statistik.php">📊 Statistik</a>
<a href="lager.php">🔧 Lager</a>
<a href="#">📝 Platzhalter</a>
</div>
</div>
<?php endif; ?>
</div>
<div class="user-info">
<img src="https://cdn.discordapp.com/avatars/<?php echo $_SESSION['user']['id']; ?>/<?php echo $_SESSION['user']['avatar']; ?>.png" alt="Avatar">
<span><?php echo htmlspecialchars($_SESSION['user']['nickname']); ?></span>
<a href="logout.php"><button class="logout-btn">Logout</button></a>
<span class="burger" onclick="toggleMenu()">☰</span>
</div>
</div>

View File

@@ -1,11 +1,9 @@
<?php
session_start();
if (!isset($_SESSION)) session_start();
if (!isset($_SESSION['user'])) {
header('Location: loginform.php');
exit;
}
?>
}?>
<!DOCTYPE html>
<html>
@@ -14,37 +12,17 @@ if (!isset($_SESSION['user'])) {
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="navbar">
<div class="navbar-links" id="mobileMenu">
<a href="index.php">🏠 Home</a>
<?php if ($_SESSION['user']['hasRole']): ?>
<a href="admin.php">✍️ Eintragung</a>
<div class="dropdown">
<a href="#">📂 Verwaltung ▼</a>
<div class="dropdown-content">
<a href="statistik.php">📊 Statistik</a>
<a href="lager.php">🔧 Lager</a>
<a href="#">📝 Platzhalter</a>
</div>
</div>
<?php endif; ?>
</div>
<div class="user-info">
<img src="https://cdn.discordapp.com/avatars/<?php echo $_SESSION['user']['id']; ?>/<?php echo $_SESSION['user']['avatar']; ?>.png" alt="Avatar">
<span><?php echo htmlspecialchars($_SESSION['user']['nickname']); ?></span>
<a href="logout.php"><button class="logout-btn">Logout</button></a>
<span class="burger" onclick="toggleMenu()">☰</span>
</div>
</div>
<?php include "header.php";?>
<div style="padding: 20px;">
<h1>Willkommen, <?php echo htmlspecialchars($_SESSION['user']['nickname']); ?>!</h1>
<?php if ($_SESSION['user']['hasRole']): ?>
<p>Du bist als <strong><?php echo htmlspecialchars($_SESSION['user']['main_role']); ?></strong> eingeloggt.</p>
<?php else: ?>
<p>Du hast nicht die erforderliche Rolle für Admin-Menüpunkte.</p>
<?php endif; ?>
<?php else:
session_destroy();
exit();
endif; ?>
</div>
<script>

23
registration.php Normal file
View File

@@ -0,0 +1,23 @@
<form name="entryform" id="entryform" method="post" action="">
<p>
<label>
input:
</label>
</p>
<label for="cars">Choose a car:</label>
<select name="cars" id="cars" form="carform">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</select>
<p>
<label>
<input type="submit" name="button" id="button" value="Submit">
</label>
</p>
</form>