source: Dev/branches/jQueryUI/index.php @ 246

Last change on this file since 246 was 246, checked in by hendrikvanantwerpen, 13 years ago

Created first page mainmenu in new system.
Moved old pages out of project root.
Fixed RDFAPI.php case for people with proper OS'es.

File size: 1.3 KB
Line 
1<?php
2require '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/api.js"></script>
14        <script type="text/javascript" src="js/main.js"></script>
15        <?php new StyleSheet("visualeditors"); ?>
16    </head>
17    <body>
18        <div id="header">
19            <?php new Logo(); ?>
20        </div>
21
22        <div id="loginForm" class="ui-dialog">
23            <form>
24                <fieldset>
25                    <label for="username">Name</label><input id="username" type="text" />
26                    <label for="password">Password</label><input id="password" type="text" />
27                </fieldset>
28            </form>
29            <div id="info"></div>
30        </div>
31
32        <div id="wrapper">
33            <div id="content">
34            </div>
35        </div>
36    </body>
37</html>
Note: See TracBrowser for help on using the repository browser.