mirror of
https://codeberg.org/ThisIsMiseryy/techstore
synced 2026-05-14 12:42:04 +00:00
Aggiunta pagina registrazione
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
<!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="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>
|
||||
Reference in New Issue
Block a user