Changed the file system to a more ordered state and updated links in files accordingly. Also the reffering to files is now uniform
22 lines
720 B
HTML
22 lines
720 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"/>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header-with-image">
|
|
<h2>CSG Ticketsystem</h2>
|
|
<img src="./img/csg.png" width="100"/>
|
|
</div>
|
|
<form action="" method="post">
|
|
<input type="password" name="password" id="password" placeholder="Passwort" required/>
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|