dburl geaendert

This commit is contained in:
Ali
2026-02-21 19:16:16 +09:00
parent c2e5587967
commit 7a542b6236
4 changed files with 106 additions and 82 deletions

26
public/login.html Normal file
View File

@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Login - Schic-App</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="container">
<h1>Login</h1>
<form id="loginForm">
<input type="text" id="username" placeholder="Username" required>
<input type="password" id="password" placeholder="Passwort" required>
<button type="submit">Einloggen</button>
</form>
<p id="errorMessage" class="error"></p>
<a href="index.html">Zurück zur Startseite</a>
</div>
<script src="js/login.js"></script>
</body>
</html>