Files
old-medolinagwtreact/GWTReactApp/war/GWTReactApp.html
2017-06-20 11:27:44 +02:00

85 lines
2.9 KiB
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">
<!-- -->
<!-- Consider inlining CSS to reduce the number of requested files -->
<!-- -->
<link type="text/css" rel="stylesheet" href="GWTReactApp.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. -->
<!-- -->
</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>
<div id="gwtAppDiv">
<h1>Test application - GWT</h1>
<div id="loginFormDiv">
<table class="tableCenter" >
<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 class="tableCenterRow">
<td id="loginButtonContainer"></td>
</tr>
</table>
</div>
<div id="loggedInDiv">
<table class="tableCenter">
<tr>
<td colspan="2" id="loggedInUserInfoContainer" style="font-size: large;"></td>
</tr>
<tr class="tableCenterRow">
<td id="goToReactApplicationButtonContainer"></td>
</tr>
</table>
</div>
</div>
<div id="reactAppDiv">
</div>
<script type="text/javascript" language="javascript" src="gwtreactapp/gwtreactapp.nocache.js"></script>
<script src="gwtreactapp/gwt-react-bundle.min.js"></script>
</body>
</html>