Last change
on this file since 248 was
248,
checked in by hendrikvanantwerpen, 13 years ago
|
Awesome jQuery Deferred chaining.
Return complete user object on login.
Show name in header and allow dialog to re-open.
|
File size:
1.5 KB
|
Rev | Line | |
---|
[47] | 1 | <?php |
---|
| 2 | require 'classes/master.php'; //should be at top of every page |
---|
[38] | 3 | ?> |
---|
| 4 | |
---|
[10] | 5 | <!DOCTYPE html> |
---|
| 6 | <html> |
---|
| 7 | <head> |
---|
| 8 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
---|
| 9 | <title>Facilitator</title> |
---|
[246] | 10 | <link type="text/css" href="js/jquery/themes/ui-lightness/jquery-ui-1.8.17.custom.css" rel="stylesheet"></link> |
---|
[244] | 11 | <script type="text/javascript" src="js/jquery/jquery-1.7.1.js"></script> |
---|
| 12 | <script type="text/javascript" src="js/jquery/ui/jquery-ui-1.8.17.custom.js"></script> |
---|
[247] | 13 | <script type="text/javascript" src="js/jquery/plugins/jquery.ba-bbq.js"></script> |
---|
[246] | 14 | <script type="text/javascript" src="js/api.js"></script> |
---|
[244] | 15 | <script type="text/javascript" src="js/main.js"></script> |
---|
[248] | 16 | <link type="text/css" href="css/visualeditors.css" rel="stylesheet"></link> |
---|
[10] | 17 | </head> |
---|
| 18 | <body> |
---|
| 19 | <div id="header"> |
---|
[248] | 20 | <div id="logo"> |
---|
| 21 | <div id="logoImage">Research Tool</div> |
---|
| 22 | <div id="logoControls">Log in</div> |
---|
| 23 | </div> |
---|
[47] | 24 | </div> |
---|
| 25 | |
---|
[244] | 26 | <div id="loginForm" class="ui-dialog"> |
---|
| 27 | <form> |
---|
| 28 | <fieldset> |
---|
[247] | 29 | <label for="username">Name</label><input id="username" type="text" /><br /> |
---|
| 30 | <label for="password">Password</label><input id="password" type="password" /><br /> |
---|
[244] | 31 | </fieldset> |
---|
| 32 | </form> |
---|
[246] | 33 | <div id="info"></div> |
---|
[244] | 34 | </div> |
---|
| 35 | |
---|
[10] | 36 | <div id="wrapper"> |
---|
| 37 | <div id="content"> |
---|
| 38 | </div> |
---|
| 39 | </div> |
---|
| 40 | </body> |
---|
[230] | 41 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.