A First Screen
The introductory screen to our application is a static HTML form, sqlconnect.html:
<html>
<head> . . . </head>
<body>
<h1>Connect to Oracle database</h1>
<form method=post action=“/dbc/servlet/SQLConnect”>
Oracle user name: <input type=text name=username size=20>
<p>
Oracle password: <input type=password name=password size=20>
<p>
<input type=submit value=“Connect to database”>
</form>
</body>
</html>