about summary refs log tree commit diff
path: root/served/quark/create.html
blob: 22cecb72665bb333ce8ca27797cc683695ca1267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<section id="create" class="box">
	<h2>Quark: Page Creation</h2>
	<form id="create-form" action="/api/quark/create" method="POST" enctype="multipart/form-data" target="preview">
		<input type="text" name="name" placeholder="Name" />
		<textarea name="content"></textarea>
		<input type="submit" value="Preview" name="preview" id="submit-preview" />
		<input type="submit" value="Create Page" id="submit-create" />
		<input type="submit" value="Create Draft" name="draft" id="submit-draft" disabled />
	</form>
</section>

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

<section class="box" style="display: none">
	<h2>Drafts</h2>
	<ol>
		{%pattern drafts}
		<li><a href="{draft.edit_link}">{draft.name}</a></li>
		{%end}
	</ol>
</section>