If the application is to be integrated into the lehrerportal it wouldn't need authentication at the beginning
24 lines
887 B
HTML
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>
|