Last change
on this file since 24 was
24,
checked in by fpvanagthoven, 14 years ago
|
Some styling. Survey will now autosave itself every 3 minutes. Autosave is not yet functional though.
|
File size:
878 bytes
|
Rev | Line | |
---|
[24] | 1 | <?php require 'classes/master.php'; |
---|
[10] | 2 | |
---|
[24] | 3 | if (isset($_POST['timeStamp'])) |
---|
| 4 | $timeStamp = $_POST['timeStamp']; |
---|
| 5 | else { |
---|
| 6 | $timeStamp = null; |
---|
| 7 | } |
---|
| 8 | |
---|
| 9 | ?> |
---|
| 10 | |
---|
[10] | 11 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
---|
| 12 | "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
---|
| 13 | |
---|
| 14 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
---|
| 15 | <head> |
---|
| 16 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
---|
| 17 | <title>Survey</title> |
---|
| 18 | <link rel="stylesheet" type="text/css" href="css/style.css" /> |
---|
| 19 | </head> |
---|
| 20 | <body> |
---|
| 21 | <div id="header"> |
---|
| 22 | <div id="logo">CPSFacilitator Tool </div> |
---|
| 23 | </div> |
---|
| 24 | <div id="wrapper"> |
---|
| 25 | |
---|
| 26 | <div id="content"> |
---|
| 27 | <?php |
---|
[24] | 28 | new SurveyCreationTool(null, $timeStamp); |
---|
[10] | 29 | ?> |
---|
| 30 | </div> |
---|
| 31 | </div> |
---|
| 32 | </body> |
---|
| 33 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.