Codice completo

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
  pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Maschera di inserimento utente</title>
</head>
<body>

<h1>Inserimento utente</h1>

<form action="controller?op=create" method="post">
  <p>Login utente (min 6 chars)<br />
  <input type="text" name="login"></p>
  <p>Nome<br />
  <input type="text" name="nome"></p>
  <p>Cognome<br />
  <input type="text" name="cognome"></p>
  <p>Email<br />
  <input type="text" name="email"></p>
  <p>Telefono<br />
  <input type="text" name="telefono"></p>
  <p><input type="submit" Value="Inserisci"></p>                    
</form>
</body>
</html>