summary refs log tree commit diff stats
path: root/theme/admin/writeQuote.tpl
blob: 256aad67cfd53772d48ac1b71eb8be0cea191fed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<h2><!--TITLE--></h2>

<form action="<!--ACTION-->" method="post" class="uniForm">
	<!--BEGIN ISERROR-->
	<div id="errorMsg">
		<h3>Oops! There was an error!</h3>

		<ol>
			<!--BEGIN ERROR-->
			<li><a href="#error<!--ERROR.ID-->" title="Jump to error"><!--ERROR.TEXT--></a></li>
			<!--END ERROR-->
		</ol>
	</div>
	<!--END ISERROR-->

	<!--BEGIN FLASH-->
	<div id="OKMsg"><p><!--FLASH.TEXT--></p></div>
	<!--END FLASH-->

	<fieldset class="blockLabels">
		<div class="ctrlHolder<!--ISQUOTEERROR-->">
			<!--BEGIN QUOTEERROR-->
			<p id="error<!--QUOTEERROR.ID-->" class="errorField"><strong><!--QUOTEERROR.TEXT--></strong></p>
			<!--END QUOTEERROR-->
			<label for="quote">Quote</label>
			<textarea name="quote" id="quote" style="height: 24em"><!--QUOTEVALUE--></textarea>
		</div>
	</fieldset>

	<div class="buttonHolder">
		<button type="reset" class="resetButton">Reset</button>
		<button type="submit" class="primaryAction">Submit</button>
	</div>
</form>