<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-7" />
<title>A Simple JSP Example</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="ReadForm.jsp">
<table width="40%" border="0">
<tr>
<td width="15%"><div align="right"><strong>Όνομα:</strong></div></td>
<td width="85%">
<div align="left">
<input type="text" name="name" id="name" />
</div>
</td>
</tr>
<tr>
<td><div align="right"><strong>Επώνυμο:</strong></div></td>
<td>
<div align="left">
<input type="text" name="surname" id="surname" />
</div>
</td>
</tr>
<tr>
<td> </td>
<td>
<input type="submit" name="button" id="button" value="Next" />
<input type="reset" name="button2" id="button2" value="Reset" />
</td>
</tr>
</table>
</form>
</body>
</html>
|