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

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

Inlogscherm werkt met jQuery UI! Woot!

File size: 1.2 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
11        <link type="text/css" href="js/jquery/themes/ui-lightness/jquery-ui-1.8.17.custom.css" rel="stylesheet" />     
12        <script type="text/javascript" src="js/jquery/jquery-1.7.1.js"></script>
13        <script type="text/javascript" src="js/jquery/ui/jquery-ui-1.8.17.custom.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>
30
31        <div id="wrapper">
32
33            <div id="content">
34
35
36                <div id="info" class="largeFrame">
37                </div>
38               
39            </div>
40        </div>
41    </body>
42</html>
Note: See TracBrowser for help on using the repository browser.