Implemented not being able to go to ticket_submit if not unlocked. Also added favicon to display in address bar (from csg-germering.de). Deleted unnessecary files.
23 lines
807 B
HTML
23 lines
807 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta CHARSET="UTF-8"/>
|
|
<meta name="viewport" content="width=device-width initial-scale=1.0"/>
|
|
<title>CSG Ticketsystem</title>
|
|
<link rel="stylesheet" href="./css/style.css"/>
|
|
<link rel="icon" type="image/x-icon" href="./img/favicon.ico">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header-with-image">
|
|
<h2>CSG Ticketsystem</h2>
|
|
<img src="./img/csg.png" width="100"/>
|
|
</div>
|
|
<form action="./php/unlock.php" method="post">
|
|
<input type="password" name="password" id="password" placeholder="Passwort" required/>
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|