about summary refs log tree commit diff
path: root/served/quark/edit-draft.html
blob: 85e5cdbba62714aff81ac1fbaddc02a9732baf23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<section>
	<h2>Quark: Editing draft '{page-editing}'</h2>
	<form id="edit-form" action="/api/quark/edit" method="POST" target="preview" enctype="multipart/form-data">
		<input type="hidden" name="name" value="{page-editing}" />
		<textarea name="content">{page-content}</textarea>
		<input type="text" name="commit" placeholder="Change Message" />
		<input type="submit" value="Edit Draft" />
		<input type="submit" value="Preview Draft" name="preview" />
		<input type="submit" value="Publish Page" name="publish" />
	</form>
	<!-- https://stackoverflow.com/a/16661115 -->
</section>

<section>
	<h2>Page Preview</h2>
	<iframe id="preview" name="preview"></iframe>
</section>