Dark mode is now enabled if the users device is set to use it. Also minor stylistic changes were made
26 lines
836 B
HTML
26 lines
836 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" />
|
|
</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" action="../php/login.php" method="post">
|
|
<label for="username">Benutzername</label>
|
|
<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>
|
|
</div>
|
|
<!--<script src="../js/login.js"></script>-->
|
|
</body>
|
|
</html>
|