mirror of
https://codeberg.org/ThisIsMiseryy/techstore
synced 2026-05-14 14:52:04 +00:00
Fix form autenticazione
This commit is contained in:
@@ -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
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user