Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.48 KB | None | 0 0
  1. <!doctype html>
  2. <!-- The DOCTYPE declaration above will set the     -->
  3. <!-- browser's rendering engine into                -->
  4. <!-- "Standards Mode". Replacing this declaration   -->
  5. <!-- with a "Quirks Mode" doctype is not supported. -->
  6.  
  7. <html>
  8.   <head>
  9.     <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  10.  
  11.     <!--                                                               -->
  12.     <!-- Consider inlining CSS to reduce the number of requested files -->
  13.     <!--                                                               -->
  14.     <link type="text/css" rel="stylesheet" href="ILike3_v2.css">
  15.  
  16.     <!--                                           -->
  17.     <!-- Any title is fine                         -->
  18.     <!--                                           -->
  19.     <title>ILike</title>
  20.    
  21.     <!--                                           -->
  22.     <!-- This script loads your compiled module.   -->
  23.     <!-- If you add any GWT meta tags, they must   -->
  24.     <!-- be added before this line.                -->
  25.     <!--                                           -->
  26.     <script type="text/javascript" language="javascript" src="ilike3_v2/ilike3_v2.nocache.js"></script>
  27.   </head>
  28.  
  29.   <!--                                           -->
  30.   <!-- The body can have arbitrary html, or      -->
  31.   <!-- you can leave the body empty if you want  -->
  32.   <!-- to create a completely dynamic UI.        -->
  33.   <!--                                           -->
  34.   <body>
  35.  
  36.     <!-- RECOMMENDED if your web app will not function without JavaScript enabled -->
  37.     <noscript>
  38.       <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">
  39.         Your web browser must have JavaScript enabled
  40.         in order for this application to display correctly.
  41.       </div>
  42.     </noscript>
  43.  
  44.     <h1>Hello iLike!</h1>
  45.         <h2>Software Architecture: Project 3</h2>
  46.             <h3>Ana Coutinho up200303059</h3>
  47.  
  48.     <table align="center">
  49.       <tr>
  50.         <td colspan="2" style="font-weight:bold;">Authentication:</td>        
  51.       </tr>
  52.       <tr>
  53.         <td id="nameFieldContainer"></td>
  54.         <td id="passwordFieldContainer"></td>
  55.         <td id="sendButtonContainer"></td>
  56.         <td id="registerButtonContainer"></td>
  57.       </tr>
  58.       <tr>
  59.         <td colspan="2" style="color:red;" id="errorLabelContainer"></td>
  60.       </tr>
  61.     </table>
  62.   </body>
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement