Fix form autenticazione

This commit is contained in:
2026-04-01 10:43:24 +02:00
parent a3c6464702
commit bca0b0fba1
2 changed files with 6 additions and 4 deletions
+2 -2
View File
@@ -9,8 +9,8 @@
<body> <body>
<form action="" method="POST"> <form action="" method="POST">
<h2>Login</h2> <h2>Login</h2>
<label for="username">Nome utente:</label> <label for="email">Indirizzo e-mail:</label>
<input type="text" id="username" name="username" required><br> <input type="email" id="email" name="email" required><br>
<label for="password">Password:</label> <label for="password">Password:</label>
<input type="password" id="password" name="password" required><br><br> <input type="password" id="password" name="password" required><br><br>
<button type="submit">Login</button> <button type="submit">Login</button>
+4 -2
View File
@@ -9,8 +9,10 @@
<body> <body>
<form action="" method="POST"> <form action="" method="POST">
<h2>Registrazione</h2> <h2>Registrazione</h2>
<label for="username">Nome utente:</label> <label for="name">Nome:</label>
<input type="text" id="username" name="username" required><br> <input type="text" id="name" name="name" required><br>
<label for="surname">Cognome:</label>
<input type="text" id="surname" name="surname" required><br>
<label for="email">Indirizzo e-mail:</label> <label for="email">Indirizzo e-mail:</label>
<input type="email" id="email" name="email" required><br> <input type="email" id="email" name="email" required><br>
<label for="password">Password:</label> <label for="password">Password:</label>