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
RevLine 
[47]1<?php
2require '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>
[208]10
[244]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"); ?>
[10]16    </head>
17    <body>
18        <div id="header">
[208]19            <?php new Logo(); ?>
[47]20        </div>
21
[244]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
[10]31        <div id="wrapper">
[47]32
[10]33            <div id="content">
[235]34
[244]35
36                <div id="info" class="largeFrame">
[10]37                </div>
[244]38               
[10]39            </div>
40        </div>
41    </body>
[230]42</html>
Note: See TracBrowser for help on using the repository browser.