Files
techstore/login.php
T
2026-04-01 10:43:24 +02:00

20 lines
716 B
PHP

<!DOCTYPE html>
<html lang="it">
<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="email">Indirizzo e-mail:</label>
<input type="email" id="email" name="email" required><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required><br><br>
<button type="submit">Login</button>
<p style="text-align: center;">Non hai un account? <a href="register.php">Registrati</a></p>
</form>
</body>
</html>