- Timestamp:
- 07/28/11 15:22:30 (14 years ago)
- Location:
- Dev/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/classes/ApplicationMenu.php
r59 r60 25 25 <form action="applicationcreation.php" method="post"> 26 26 27 <input type="submit" value=" Create new application" class="surveyButton bigSurveyButton" />27 <input type="submit" value="New" class="surveyButton bigSurveyButton" /> 28 28 29 29 </form> … … 39 39 ?> 40 40 <form id="loadApplicationForm" action="applicationcreation.php" method="post"> 41 <input type="button" onclick="loadApplication()" value="Load /Edit application" class="surveyButton bigSurveyButton" />41 <input type="button" onclick="loadApplication()" value="Load / Edit" class="surveyButton bigSurveyButton" /> 42 42 </form> 43 43 -
Dev/trunk/classes/Menu.php
r59 r60 18 18 public function menuTitle() { 19 19 ?> 20 <legend>< ?php echo $this->title; ?></legend>20 <legend><h2><?php echo $this->title; ?></h2></legend> 21 21 <?php 22 22 } -
Dev/trunk/classes/SessionMenu.php
r59 r60 6 6 * @author fpvanagthoven 7 7 */ 8 class SessionMenu {8 class SessionMenu extends Menu{ 9 9 10 10 public function __construct() { 11 ?> <div id="menu1" class="menu"> <?php 11 ?> <fieldset class="menu"> <?php 12 parent::__construct('Session'); 12 13 ?> <div class="menuButtons"> <?php 13 14 SessionMenu::createSessionButton(); … … 16 17 ?> </div> <?php 17 18 SessionMenu::loadSessionList(null); 18 ?> </div><?php19 ?></fieldset><?php 19 20 } 20 21 … … 24 25 <form action="sessioncreation.php" method="post"> 25 26 26 <input type="submit" value=" Create new session" class="surveyButton bigSurveyButton" />27 <input type="submit" value="New" class="surveyButton bigSurveyButton" /> 27 28 28 29 </form> … … 34 35 ?> 35 36 <form id="loadSessionForm" action="sessioncreation.php" method="post"> 36 <input type="button" onclick="loadSession()" value="Load /Edit session" class="surveyButton bigSurveyButton" />37 <input type="button" onclick="loadSession()" value="Load / Edit" class="surveyButton bigSurveyButton" /> 37 38 </form> 38 39 <?php … … 42 43 ?> 43 44 <form action="session.php" method="post"> 44 <input type="button" onclick="startSession()" value="Start session" class="surveyButton bigSurveyButton" />45 <input type="button" onclick="startSession()" value="Start" class="surveyButton bigSurveyButton" /> 45 46 </form> 46 47 <?php -
Dev/trunk/classes/SurveyMenu.php
r59 r60 10 10 * @author fpvanagthoven 11 11 */ 12 class SurveyMenu {12 class SurveyMenu extends Menu { 13 13 14 14 public function __construct($surveys) { 15 ?> <div id="menu3" class="menu"> <?php 15 ?> <fieldset class="menu"> <?php 16 parent::__construct('Survey'); 16 17 ?> <div class="menuButtons"> <?php 17 18 SurveyMenu::newSurveyButton(); 18 19 SurveyMenu::loadSurveyButton(); 19 SurveyMenu::deleteSurveyButton();20 // SurveyMenu::deleteSurveyButton(); 20 21 ?> </div> <?php 21 22 SurveyMenu::loadSurveyList($surveys); 22 ?> </ div> <?php23 ?> </fieldset> <?php 23 24 } 24 25 … … 28 29 <form action="surveycreation.php" method="post"> 29 30 30 <input type="submit" value=" Create new survey" class="surveyButton bigSurveyButton" />31 <input type="submit" value="New" class="surveyButton bigSurveyButton" /> 31 32 32 33 </form> … … 38 39 ?> 39 40 <form id="loadForm" action="surveycreation.php" method="post"> 40 <input type="button" onclick="loadSurvey()" value="Load /Edit survey" class="surveyButton bigSurveyButton" />41 <input type="button" onclick="loadSurvey()" value="Load / Edit" class="surveyButton bigSurveyButton" /> 41 42 </form> 42 43 <?php -
Dev/trunk/index.php
r59 r60 15 15 echo "please fill in a username and password"; 16 16 } 17 18 if (isset($_SESSION['username'])) 19 redirect('mainmenu.php'); 17 20 ?> 18 21
Note: See TracChangeset
for help on using the changeset viewer.