Init non working version
This commit is contained in:
75
TestGWT/war/TestGWT.html
Normal file
75
TestGWT/war/TestGWT.html
Normal file
@@ -0,0 +1,75 @@
|
||||
<!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">
|
||||
|
||||
<!-- -->
|
||||
<!-- Consider inlining CSS to reduce the number of requested files -->
|
||||
<!-- -->
|
||||
<link type="text/css" rel="stylesheet" href="TestGWT.css">
|
||||
|
||||
<!-- -->
|
||||
<!-- Any title is fine -->
|
||||
<!-- -->
|
||||
<title>Web Application Starter Project</title>
|
||||
|
||||
<!-- -->
|
||||
<!-- This script loads your compiled module. -->
|
||||
<!-- If you add any GWT meta tags, they must -->
|
||||
<!-- be added before this line. -->
|
||||
<!-- -->
|
||||
<script type="text/javascript" src="testgwt/testgwt.nocache.js"></script>
|
||||
|
||||
</head>
|
||||
|
||||
<!-- -->
|
||||
<!-- The body can have arbitrary html, or -->
|
||||
<!-- you can leave the body empty if you want -->
|
||||
<!-- to create a completely dynamic UI. -->
|
||||
<!-- -->
|
||||
<body>
|
||||
|
||||
<!-- RECOMMENDED if your web app will not function without JavaScript enabled -->
|
||||
<noscript>
|
||||
<div style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif">
|
||||
Your web browser must have JavaScript enabled
|
||||
in order for this application to display correctly.
|
||||
</div>
|
||||
</noscript>
|
||||
|
||||
<h1>Test application - GWT</h1>
|
||||
|
||||
<table align="center" >
|
||||
<tr>
|
||||
<td colspan="2" id="userNameFieldLabel" style="font-size: large;">Username:</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="userNameFieldContainer"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" id="passwordFieldLabel" style="font-size: large;">Password:</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="passwordFieldContainer"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="loginButtonContainer"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" id="loggedInUserInfoContainer" style="font-size: large;"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td id="goToReactApplicationButtonContainer"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" style="color:red;" id="errorLabelContainer"></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user