Aggiunta pagina form login

This commit is contained in:
2026-04-01 10:22:28 +02:00
parent 7676002439
commit aadf344e63
3 changed files with 70 additions and 2 deletions
+19
View File
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - TechStore</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form action="" method="POST">
<h2>Login</h2>
<label for="username">Nome utente:</label>
<input type="text" id="username" name="username" required><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required><br><br>
<button type="submit">Login</button>
</form>
</body>
</html>