Sample JSP file

Below is an example of a JSP file using toolkit provided JSP tags.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@ taglib uri="/WEB-INF/btt-html.tld" prefix="btt" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<btt:html>
<head>
<title>Demo Bank: User Sign In</title>
<META name="GENERATOR" content="IBM WebSphere Studio">
</head>
<body bgcolor="#000066" text="#FFFFFF" background="/BTTHTMLSampleWeb/btt/html/images/wall.gif" >
<btt:errors/>
<btt:form action="/signin">
<p><font size=+2><btt:label text="Welcome to Demo Bank" /></font>
<p><font size=+1><btt:label text="Please Sign In"/></font>
<br>
<br>
<table>
<tr><td></td><td align="right"><btt:label text="User_ID"/></td>
<td align="left"><btt:text property="userId" size="12"/></td><td>&nbsp;</td></tr>
<tr><td></td><td align="right"><btt:label text="Password"/></td>
<td align="left"><btt:password property="pw" size="12"/></td><td>&nbsp;</td></tr>
<tr><td></td><td align="right"><btt:label text="Select_Language"/></td>
<td align="left"><btt:select property="locale">
<btt:option value="en_US">English</btt:option>
<btt:option value="es_ES">Spanish</btt:option>
</btt:select></td></tr>
<tr></tr>
<tr><td align=center colspan=2><br><html:submit property="Sign-In"/></td><td></td><td></td></tr>
</table>
</btt:form>
<br>
<br>
</body>
</btt:html>