Last change
on this file since 247 was
247,
checked in by hendrikvanantwerpen, 13 years ago
|
Introduced basic checking of login.
Added object query and create functions to API.
Fixed sessions overview page.
Added browser history mgmt.
|
File size:
1.4 KB
|
Line | |
---|
1 | <?php |
---|
2 | require 'classes/master.php'; //should be at top of every page |
---|
3 | ?> |
---|
4 | |
---|
5 | <!DOCTYPE html> |
---|
6 | <html> |
---|
7 | <head> |
---|
8 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
---|
9 | <title>Facilitator</title> |
---|
10 | <link type="text/css" href="js/jquery/themes/ui-lightness/jquery-ui-1.8.17.custom.css" rel="stylesheet"></link> |
---|
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> |
---|
13 | <script type="text/javascript" src="js/jquery/plugins/jquery.ba-bbq.js"></script> |
---|
14 | <script type="text/javascript" src="js/api.js"></script> |
---|
15 | <script type="text/javascript" src="js/main.js"></script> |
---|
16 | |
---|
17 | <?php new StyleSheet("visualeditors"); ?> |
---|
18 | </head> |
---|
19 | <body> |
---|
20 | <div id="header"> |
---|
21 | <?php new Logo(); ?> |
---|
22 | </div> |
---|
23 | |
---|
24 | <div id="loginForm" class="ui-dialog"> |
---|
25 | <form> |
---|
26 | <fieldset> |
---|
27 | <label for="username">Name</label><input id="username" type="text" /><br /> |
---|
28 | <label for="password">Password</label><input id="password" type="password" /><br /> |
---|
29 | </fieldset> |
---|
30 | </form> |
---|
31 | <div id="info"></div> |
---|
32 | </div> |
---|
33 | |
---|
34 | <div id="wrapper"> |
---|
35 | <div id="content"> |
---|
36 | </div> |
---|
37 | </div> |
---|
38 | </body> |
---|
39 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.