index.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Inserimento Utente</title>
</head>
<body>
  <h1>Inserimento utente</h1>
  <p>Per inserire un utente riempire i campi sottostanti. <br />
    Al termine,cliccare sul pulsante Invia.</p>

  <form action="SimpleController" method="get">
    <table cellspacing="5" border="0">
    <tr>
      <td align="right">Nome:</td>
      <td><input type="text" name="nome" /></td>
    </tr>
    <tr>
      <td align="right">Cognome:</td>
      <td><input type="text" name="cognome" /></td>
    </tr>
    <tr>
      <td align="right">Età:</td>
      <td><input type="text" name="eta" /></td>
    </tr>
    <tr>
      <td></td>
      <td><br><input type="submit" value="Invia" /></td>
    </tr>
    </table>
  </form>
</body>
</html>