Files
ticket_system_nino/pages/login.html
sraffauf f055f8943f Added proper lock and favicon
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.
2026-01-28 15:49:54 +01:00

27 lines
853 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login</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>Admin Login</h2>
<img src="../img/csg.png" width="100" />
</div>
<form id="loginForm">
<input type="text" id="username" name="username" required />
<label for="password">Passwort</label>
<input type="password" id="password" name="password" required />
<button type="submit">Einloggen</button>
</form>
<p id="errorMsg" style="color: red;"></p>
</div>
<script src="../js/login.js"></script>
</body>
</html>