Files
codfiscale-php/index.html
2025-12-12 10:16:44 +00:00

26 lines
1.1 KiB
HTML

<!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>