56 lines
1.7 KiB
HTML
56 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="./Styles/login/login.css">
|
|
<link rel="stylesheet" href="./Styles/styles-main.css">
|
|
<link href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" rel="stylesheet">
|
|
<title>Login</title>
|
|
</head>
|
|
<body>
|
|
<!-- Header -->
|
|
<div id="header-placeholder"></div>
|
|
<script>
|
|
fetch(href="/header")
|
|
.then(response => response.text())
|
|
.then(data => {
|
|
document.getElementById('header-placeholder').innerHTML = data;
|
|
})
|
|
.catch(error => console.error('Fehler beim Laden des Headers:', error));
|
|
</script>
|
|
|
|
<main class="main-content">
|
|
<div class="login-container">
|
|
<h2 class="login-title">Login</h2>
|
|
<form class="login-form">
|
|
<div class="input-group">
|
|
<input type="text" placeholder="Username" required />
|
|
<i class="icon fas fa-user"></i>
|
|
</div>
|
|
<div class="input-group">
|
|
<input type="password" placeholder="Passwort" required />
|
|
<i class="icon fas fa-lock"></i>
|
|
</div>
|
|
<button type="submit" class="login-btn">Login</button>
|
|
<p class="register-text">
|
|
Noch keinen Account? <a href="/registrieren">Registrieren</a>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
</main>
|
|
|
|
<!-- Fußzeiele -->
|
|
<div id="footer"></div>
|
|
|
|
<script>
|
|
fetch('/footer')
|
|
.then(response => response.text())
|
|
.then(data => {
|
|
document.getElementById('footer').innerHTML = data;
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|