Refactored file system

Changed the file system to a more ordered state and updated links in
files accordingly. Also the reffering to files is now uniform
This commit is contained in:
sraffauf
2026-01-21 17:58:15 +01:00
parent a3b261e9ae
commit 77fd4e836b
15 changed files with 99 additions and 52 deletions

View File

@@ -4,16 +4,16 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Schul-IT Ticketsystem</title>
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="../css/style.css" />
</head>
<body>
<div class="container">
<div class="header-with-image">
<h2>CSG IT Ticket System</h2>
<img src="img/csg.png" width="100" />
<img src="../img/csg.png" width="100" />
</div>
<form action="backend/save_ticket.php" method="post">
<form action="../php/save_ticket.php" method="post">
<label for="title">Betreff</label>
<input type="text" id="title" name="title" required />
@@ -38,9 +38,9 @@
</select>
<button type="submit">Ticket absenden</button>
<a href="login.html" class="login-btn">Admin Login</a>
<a href="./login.html" class="login-btn">Admin Login</a>
</form>
</div>
</body>
</html>
</html>