35 lines
1013 B
HTML
35 lines
1013 B
HTML
<!doctype html>
|
|
<!-- The DOCTYPE declaration above will set the -->
|
|
<!-- browser's rendering engine into -->
|
|
<!-- "Standards Mode". Replacing this declaration -->
|
|
<!-- with a "Quirks Mode" doctype is not supported. -->
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
|
|
<link type="text/css" rel="stylesheet" href="Google_web_toolkit.css">
|
|
|
|
<title>Sample GWT Application</title>
|
|
|
|
<script type="text/javascript" language="javascript" src="google_web_toolkit/google_web_toolkit.nocache.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Sample GWT Application</h1>
|
|
<table align="center">
|
|
<tr>
|
|
<td colspan="2" style="font-weight:bold;">Please enter your message:</td>
|
|
</tr>
|
|
<tr>
|
|
<td id="nameFieldContainer"></td>
|
|
<td id="sendButtonContainer"></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" style="color:red;" id="errorLabelContainer"></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" style="color:red;" id="serverResponseContainer"></td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html> |