source: Dev/trunk/register.php @ 58

Last change on this file since 58 was 58, checked in by fpvanagthoven, 14 years ago

mainmenu.php tweaked for usability. When not logged in, the user gets redirected to index.php

File size: 1.1 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        <link rel="stylesheet" type="text/css" href="css/style.css" />
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.