Last change
on this file since 236 was
235,
checked in by fpvanagthoven, 13 years ago
|
getObject.php is de nieuwe pagina die gewoon PHP objecten in JSON zet en echoet. Nu werkt alleen de questionEditor er op, uiteindelijk zou dit ook de infopanel en de sequencer moeten gaan serven.
|
File size:
2.1 KB
|
Line | |
---|
1 | <?php |
---|
2 | require 'classes/master.php'; //should be at top of every page |
---|
3 | ?> |
---|
4 | |
---|
5 | <!DOCTYPE html> |
---|
6 | <html> |
---|
7 | <head> |
---|
8 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
---|
9 | <title>Facilitator</title> |
---|
10 | <?php new StyleSheet("visualeditors"); ?> |
---|
11 | <script type="text/javascript" src="js/generalScripts.js"></script> |
---|
12 | </head> |
---|
13 | <body> |
---|
14 | <div id="header"> |
---|
15 | <?php new Logo(); ?> |
---|
16 | </div> |
---|
17 | |
---|
18 | <div id="wrapper"> |
---|
19 | <div id="content"> |
---|
20 | <div class="largeFrame side" id="adminPanel"> |
---|
21 | <div class="largeTitle">Administrator</div> |
---|
22 | <div class="innerLargeFrame"> |
---|
23 | <p>Use the below buttons to access, edit and create new sessions and content.</p><br /> |
---|
24 | <input type="button" class="bigButton vertical" value="Browse Sessions" id="btnEditSessions" onClick="window.location='selectSession.php'" /><br /> |
---|
25 | <input type="button" class="bigButton vertical" value="Browse Surveys" id="btnEditSessions" onClick="window.location='selectSurvey.php'" /><br /> |
---|
26 | <input type="button" class="bigButton vertical" value="Browse Questions" id="btnEditSessions" onClick="window.location='selectQuestion.php'" /><br /> |
---|
27 | <input type="button" class="bigButton vertical" value="Browse Applications" id="btnEditSessions" onClick="window.location='selectApplication.php'" /><br /> |
---|
28 | |
---|
29 | </div> |
---|
30 | <div class="controls"></div> |
---|
31 | </div> |
---|
32 | <div class="largeFrame side" id="facilitatorPanel"> |
---|
33 | <div class="largeTitle">Facilitator</div> |
---|
34 | <div class="innerLargeFrame"> |
---|
35 | <p>Use the Start button below to start hosting a session.</p> |
---|
36 | <input type="button" class="bigButton vertical" value="Start" id="btnFacStart" onClick="window.location='facpanel.php'" style="margin-top: 0.25em;"/> |
---|
37 | </div> |
---|
38 | <div class="controls"></div> |
---|
39 | </div> |
---|
40 | </div> |
---|
41 | </div> |
---|
42 | </body> |
---|
43 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.