Commit iniziale

This commit is contained in:
2025-12-12 10:16:44 +00:00
commit 5b0d1a980a
2 changed files with 49 additions and 0 deletions

26
index.html Normal file
View File

@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modulo dati personali</title>
</head>
<body>
<form action="elabora.php" method="post">
<label for="firstname">Nome: </label>
<input type="text" name="nome" id="firstname" required><br>
<label for="lastname">Cognome: </label>
<input type="text" name="cognome" id="lastname" required><br>
<label for="birthday">Data di nascita: </label>
<input type="date" name="datanascita" id="birthday" required><br>
<label for="birthplace">Luogo di nascita: </label>
<input type="text" name="luogonascita" id="birthplace" required>
(
<input type="text" name="provincia" id="province" size="2" maxlength="2" minlength="2" required>
)<br>
<label for="codfiscale">Codice Fiscale: </label>
<input type="text" name="codFiscale" id="codfiscale" minlength="16" maxlength="16" required><br>
<input type="submit" value="Invia">
</form>
</body>
</html>