removed arbitrary file
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,2 +1 @@
|
|||||||
/data/users.json
|
./data/*
|
||||||
/data/tickets.json
|
|
||||||
|
|||||||
@@ -1,46 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="de">
|
|
||||||
<head>
|
|
||||||
<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" />
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="container">
|
|
||||||
<div class="header-with-image">
|
|
||||||
<h2>CSG IT Ticket System</h2>
|
|
||||||
<img src="../img/csg.png" width="100" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<form action="../php/save_ticket.php" method="post">
|
|
||||||
<label for="title">Betreff</label>
|
|
||||||
<input type="text" id="title" name="title" required />
|
|
||||||
|
|
||||||
<label for="description">Problem-Beschreibung</label>
|
|
||||||
<textarea id="description" name="description" rows="5" required></textarea>
|
|
||||||
|
|
||||||
<label for="room">Raum</label>
|
|
||||||
<input type="number" id="room" name="room" required />
|
|
||||||
|
|
||||||
<label for="name">Name, Vorname</label>
|
|
||||||
<input type="text" id="name" name="name" required>
|
|
||||||
|
|
||||||
<label for="category">Kategorie</label>
|
|
||||||
<select id="category" name="category">
|
|
||||||
<option value="Whiteboard">Whiteboard</option>
|
|
||||||
<option value="Internet">Internet</option>
|
|
||||||
<option value="Schülerportal">Schülerportal</option>
|
|
||||||
<option value="Ipad(Koffer)">Ipad(Koffer)</option>
|
|
||||||
<option value="Apple TV">Apple TV</option>
|
|
||||||
<option value="DocuCam">Docu Kamera</option>
|
|
||||||
<option value="Sonstiges">Sonstiges</option>
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<button type="submit">Ticket absenden</button>
|
|
||||||
<a href="./login.html" class="login-btn">Admin Login</a>
|
|
||||||
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
Reference in New Issue
Block a user