source: Dev/trunk/classes/SessionMenu.php @ 57

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

Refactoring main menu

File size: 447 bytes
Line 
1<?php
2
3/**
4 * Description of SessionMenu
5 *
6 * @author fpvanagthoven
7 */
8class SessionMenu {
9
10    public function __construct() {
11        SessionMenu::createSessionButton();
12    }
13
14    public static function createSessionButton() {
15        ?>
16
17        <form action="sessioncreation.php" method="post">
18
19            <input type="submit" value="Create new session" class="surveyButton bigSurveyButton" />
20
21        </form>
22
23        <?php
24    }
25
26}
27?>
Note: See TracBrowser for help on using the repository browser.