HodlEye_Crypto_Price_Tracker/public/login.html
Gerald 1b03a04a47 Version 1.0.9
Adding Login Screen
2025-03-19 05:52:23 +01:00

25 lines
615 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Login</title>
<link rel="stylesheet" href="login.css">
</head>
<body>
<div class="background">
<div class="shape"></div>
<div class="shape"></div>
</div>
<form action="/login" method="POST">
<h3>Login</h3>
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<br>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<br>
<button type="submit">Login</button>
</form>
</body>
</html>