25 lines
682 B
HTML
25 lines
682 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Login</title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
<body class="bg-light">
|
|
|
|
<div class="container mt-5">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-4">
|
|
<form class="card p-4">
|
|
<h3 class="text-center">Login</h3>
|
|
<input class="form-control mb-3" type="text" placeholder="Benutzername">
|
|
<input class="form-control mb-3" type="password" placeholder="Passwort">
|
|
<button class="btn btn-primary w-100">Anmelden</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|