diff options
-rw-r--r-- | templates/export.tpl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/export.tpl b/templates/export.tpl new file mode 100644 index 0000000..a3e5641 --- /dev/null +++ b/templates/export.tpl @@ -0,0 +1,20 @@ +{include file="header.tpl"} + <body> + <div id="frame"> + <table> + <tr> + <td> + <form action="javascript:#" onsubmit="setViewMode(document.getElementsByName('format')[0].options[document.getElementsByName('format')[0].selectedIndex].value); return false;"> + <select name="format"> + <option value="HTML">HTML</option> + <option value="MoinMoin">MoinMoin Wiki</option> + </select> + <input type="image" src="resources/doit.png" alt="Switch View" /> + </form> + <div id="output"></div> + </td> + </tr> + </table> + </div> + </body> +{include file="footer.tpl"} |