aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/installer_form.html
blob: 669f7aa83452202b4b767329e1493dcd14945058 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<form id="<!-- IF FORM_ID -->{FORM_ID}<!-- ELSE -->install_install<!-- ENDIF -->" method="POST" action="{U_ACTION}">
<!-- IF .options -->
<!-- IF S_FORM_ELEM_COUNT > 1 -->
<fieldset>
<!-- ENDIF -->

	<!-- BEGIN options -->
		<!-- IF options.S_LEGEND -->
			<!-- IF not options.S_FIRST_ROW -->
			</fieldset>

			<fieldset>
			<!-- ENDIF -->
		<legend>{options.LEGEND}</legend>
		<!-- ELSE -->

			<!-- IF options.TYPE <> 'submit' -->
		<dl>
			<dt><label for="{options.KEY}">{options.TITLE}{L_COLON}</label><!-- IF options.S_EXPLAIN --><br /><span class="explain">{options.TITLE_EXPLAIN}</span><!-- ENDIF --></dt>
			<dd>
				<!-- IF options.TYPE == 'text' -->
				<input type="text" name="{options.KEY}" value="{options.DEFAULT}" />
				<!-- ENDIF -->
				<!-- IF options.TYPE == 'email' -->
				<input type="email" name="{options.KEY}" value="{options.DEFAULT}" />
				<!-- ENDIF -->
				<!-- IF options.TYPE == 'password' -->
				<input type="password" name="{options.KEY}" />
				<!-- ENDIF -->
				<!-- IF options.TYPE == 'select' -->
				<select name="{options.KEY}">
					<!-- BEGIN options.OPTIONS -->
					<option value="{options.OPTIONS.value}"<!-- IF options.OPTIONS.selected --> selected<!-- ENDIF -->>{options.OPTIONS.label}</option>
					<!-- END options.OPTIONS -->
				</select>
				<!-- ENDIF -->
				<!-- IF options.TYPE == 'radio' -->
					<!-- BEGIN options.OPTIONS -->
				<input type="radio" name="{options.KEY}" value="{options.OPTIONS.value}" <!-- IF options.OPTIONS.selected -->checked<!-- ENDIF --> /> {options.OPTIONS.label}
					<!-- END options.OPTIONS -->
				<!-- ENDIF -->
			</dd>
		</dl>
			<!-- ELSE -->
<!-- IF S_FORM_ELEM_COUNT > 1 -->
</fieldset>
<!-- ENDIF -->
				<fieldset class="submit-buttons">
					<legend>{L_SUBMIT}</legend>
					<input class="button1" type="submit" name="{options.KEY}" value="{options.TITLE}" />
				</fieldset>
			<!-- ENDIF -->
		<!-- ENDIF-->
	<!-- END options -->
<!-- ENDIF -->
</form>