Update gui. Add modified version of Justin's system diagram
[matches/MCTX3420.git] / testing / MCTXWeb / public_html / login.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3   <head>
4     <title>MCTX3420 Web Interface</title>
5     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6     <script type="text/javascript" src="static/jquery-1.10.1.min.js"></script>
7     <script type="text/javascript" src="static/mctx.gui.js"></script>
8     
9     <link rel="stylesheet" type="text/css" href="static/style.css">
10     <link rel="stylesheet" type="text/css" href="static/nav-menu.css">
11     <script type="text/javascript">
12       runBeforeLoad(true);
13       
14       $(document).ready(function () {
15         $("#login").submit(function () {
16           $("#login").login();
17           return false;
18         });
19       });
20     </script>
21   </head>
22   
23   <body>
24     <div id="header">
25       <div id="leftnav">
26         <a href="http://www.uwa.edu.au/" target="_blank">
27           <img alt = "The University of Western Australia"
28           src="static/uwacrest-text.png">
29         </a>
30         <span id="title">Exploding Cans</span>
31       </div>
32       <div id="rightnav">
33         <span id="date">
34           <script type="text/javascript">getDate();</script>
35         </span>
36       </div>
37       <div class="clear"></div>
38     </div>
39     <!-- End header -->
40     
41     <div id="login-container">
42      <div class="widget">
43          <form id="login" action="#">
44            <p>
45              <label>
46                Username<br>
47                <input name="username" type="text">
48              </label>
49            </p>
50            <p>
51              <label>
52                Password<br>
53                <input name="pass" type="password">
54              </label>             
55            </p>
56            <p style="float:left; margin:0;">
57              <a href="#">Forgotten password?</a>
58            </p>
59            <p style="float:right; margin:0;">
60              <input type="submit" value="Log In">
61            </p>
62            <p id="result">
63              &nbsp;
64            </p>
65           </form>
66      </div>
67     </div>
68   </body>
69 </html>

UCC git Repository :: git.ucc.asn.au