source: Dev/branches/Demo/register.php @ 225

Last change on this file since 225 was 144, checked in by fpvanagthoven, 13 years ago

Fixed mkdir call in ApplicationConnector?.php, now actually makes a directory instead of errors.
Cleaning up of pipeline Sequencer, smaller icons, etc. Trying to get non-db version of editor working properly, then integrate db calls.

File size: 1.0 KB
Line 
1<?php require 'classes/master.php'; //should be at top of every page    ?>
2
3<!DOCTYPE html>
4<html>
5    <head>
6        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7        <title>Facilitator</title>
8        <?php new StyleSheet("awesome"); ?>
9        <script type="text/javascript" src="js/menu.js"></script>
10    </head>
11    <body>
12        <div id="header">
13            <?php new Logo(); ?>
14        </div>
15
16        <div id="wrapper">
17            <div id="content">
18                <div class="menu">
19                    <form action="index.php" method="POST"><br/>
20                        <h3>Username</h3>
21                        <input type="text" name="username"><br/>
22                        <h3>Password</h3>
23                        <input type="password" name="password"><br/><br/>
24                        <input type="submit" name="register" class="bigSurveyButton surveyButton" value="Register">
25                    </form>
26                </div>
27            </div>
28        </div>
29    </body>
30</html>
Note: See TracBrowser for help on using the repository browser.