1234567891011121314151617181920212223 |
- {include file = "header.html"}
- <script type="text/javascript" src="js/poll_options.js"></script>
- <div id = "content">
- <p id="title">{$title}</p>
- <p id="description">{$description}</p>
- <div class = "submit-form">
- <form name="poll" action="process_poll_options.php?poll_id={$poll_id}" method="post">
- <div id="options">
- <b>Options</b>
- <label>(maximum selectable:</label>
- <input id="maxselect" type="text" name="maxselect" size="2" />
- <label>)</label>
- </div>
- <input type="button" value="Add another option" onClick="addOption()" />
- <input type="submit" value="Submit" />
- </form>
- </div>
- </div>
- {include file = "footer.html"}
|