Files
ticket_system_nino/index.html
sraffauf 9a4169e50d index now redirects to ticket_submit
If the application is to be integrated into the lehrerportal it wouldn't
need authentication at the beginning
2026-01-28 16:18:07 +01:00

24 lines
887 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">
<meta http-equiv="refresh" content="0; url=../php/ticket_submit.php" />
</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>