Code

Code

Code example of the customization form

<jsp:include page="top.jsp"/>

<table class="form">

<form action="customize_handler.jsp" method="post">

<tr>

<td class="label">Background color:</td>

<td><input type="text" name="bgColor"></td>

</tr>

<tr>

<td class="label">Banner color:</td>

<td><input type="text" name="bannerColor"></td>

</tr>

<tr>

<td class="label">Text color:</td>

<td><input type="text" name="textColor"></td>

</tr>74

<tr>

<td class="label">Your name:</td>

<td><input type="text" name="name"></td>

</tr>

<tr>

<td colspan="2" align="right">

<input type="submit" name="go" value="Set Preferences">

</td>

</tr>

</form>

</table>

<jsp:include page="bottom.jsp"/>

Report Page