43 lines
1.1 KiB
HTML
43 lines
1.1 KiB
HTML
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
|
||
|
"http://www.w3.org/TR/html4/strict.dtd">
|
||
|
<html>
|
||
|
<head>
|
||
|
|
||
|
<link rel="stylesheet" href="demo.css">
|
||
|
|
||
|
<title>Take our survey | The Dojo Toolkit</title>
|
||
|
|
||
|
<script type="text/javascript" src="../../dojo/dojo.js"></script>
|
||
|
<script type="text/javascript" src="src.js"></script>
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<div class="pageTitleWrapper"><h1 class="pageTitle">Simple Survey</h1></div>
|
||
|
|
||
|
<h2>Which toolkits do you use?</h2>
|
||
|
|
||
|
<div id="container">
|
||
|
<div id="responseText"></div>
|
||
|
<div id="formNode">
|
||
|
<form id="survey" action="src/submit.php" method="post">
|
||
|
<p id="choices"></p>
|
||
|
|
||
|
<p>Add an additional choice:<br>
|
||
|
<input id="other" name="other" size="15"> <button id="addChoice">Add</button>
|
||
|
</p>
|
||
|
|
||
|
<input type="submit" id="postSurvey" value="Submit Results">
|
||
|
<input type="reset" value="Clear Data">
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- a node for the chart -->
|
||
|
<div class="chartHolder" id="holder">
|
||
|
<div id="chart"></div>
|
||
|
<p class="note">* percentages based on number of people surveyed <span id="lastUpdate"></span></p>
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|