Files
techstore/register.php
T

24 lines
1009 B
PHP

<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registrazione - TechStore</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form action="" method="POST">
<h2>Registrazione</h2>
<label for="username">Nome utente:</label>
<input type="text" id="username" name="username" required><br>
<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>
<label for="confirm_password">Conferma password:</label>
<input type="password" id="confirm_password" name="confirm_password" required><br><br>
<button type="submit">Registrati</button>
<p style="text-align: center;">Hai già un account? <a href="login.php">Accedi</a></p>
</form>
</body>
</html>