source: Dev/branches/jos-branch/register.php @ 241

Last change on this file since 241 was 241, checked in by fpvanagthoven, 13 years ago
File size: 1.2 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("visualEditors"); ?>
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="largeFrame">
19                    <div class="largeTitle">Register new user</div>
20                    <div class="content">
21                        <form action="index.php" method="POST"><br/>
22                            <h3>Username</h3>
23                            <input type="text" name="username"><br/>
24                            <h3>Password</h3>
25                            <input type="password" name="password"><br/><br/>
26                            <input type="submit" name="register" class="bigSurveyButton surveyButton" value="Register">
27                        </form>
28                    </div>
29                </div>
30            </div>
31        </div>
32    </body>
33</html>
Note: See TracBrowser for help on using the repository browser.