source: branches/posledni/forum/styles/prosilver/template/ucp_prefs_post.html

Last change on this file was 400, checked in by george, 16 years ago
  • Přidáno: Nové forum phpBB 3.
File size: 2.2 KB
Line 
1<!-- INCLUDE ucp_header.html -->
2
3<form id="ucp" method="post" action="{S_UCP_ACTION}"{S_FORM_ENCTYPE}>
4
5<h2>{L_TITLE}</h2>
6<div class="panel">
7 <div class="inner"><span class="corners-top"><span></span></span>
8
9 <fieldset>
10 <!-- IF ERROR --><p class="error">{ERROR}</p><!-- ENDIF -->
11 <dl>
12 <dt><label for="bbcode1">{L_DEFAULT_BBCODE}:</label></dt>
13 <dd>
14 <label for="bbcode1"><input type="radio" name="bbcode" id="bbcode1" value="1"<!-- IF S_BBCODE --> checked="checked"<!-- ENDIF --> /> {L_YES}</label>
15 <label for="bbcode0"><input type="radio" name="bbcode" id="bbcode0" value="0"<!-- IF not S_BBCODE --> checked="checked"<!-- ENDIF --> /> {L_NO}</label>
16 </dd>
17 </dl>
18 <dl>
19 <dt><label for="smilies1">{L_DEFAULT_SMILIES}:</label></dt>
20 <dd>
21 <label for="smilies1"><input type="radio" name="smilies" id="smilies1" value="1"<!-- IF S_SMILIES --> checked="checked"<!-- ENDIF --> /> {L_YES}</label>
22 <label for="smilies0"><input type="radio" name="smilies" id="smilies0" value="0"<!-- IF not S_SMILIES --> checked="checked"<!-- ENDIF --> /> {L_NO}</label>
23 </dd>
24 </dl>
25 <dl>
26 <dt><label for="sig1">{L_DEFAULT_ADD_SIG}:</label></dt>
27 <dd>
28 <label for="sig1"><input type="radio" name="sig" id="sig1" value="1"<!-- IF S_SIG --> checked="checked"<!-- ENDIF --> /> {L_YES}</label>
29 <label for="sig0"><input type="radio" name="sig" id="sig0" value="0"<!-- IF not S_SIG --> checked="checked"<!-- ENDIF --> /> {L_NO}</label>
30 </dd>
31 </dl>
32 <dl>
33 <dt><label for="notify1">{L_DEFAULT_NOTIFY}:</label></dt>
34 <dd>
35 <label for="notify1"><input type="radio" name="notify" id="notify1" value="1"<!-- IF S_NOTIFY --> checked="checked"<!-- ENDIF --> /> {L_YES}</label>
36 <label for="notify0"><input type="radio" name="notify" id="notify0" value="0"<!-- IF not S_NOTIFY --> checked="checked"<!-- ENDIF --> /> {L_NO}</label>
37 </dd>
38 </dl>
39 </fieldset>
40
41 <span class="corners-bottom"><span></span></span></div>
42</div>
43
44<fieldset class="submit-buttons">
45 {S_HIDDEN_FIELDS}<input type="reset" value="{L_RESET}" name="reset" class="button2" />&nbsp;
46 <input type="submit" name="submit" value="{L_SUBMIT}" class="button1" />
47 {S_FORM_TOKEN}
48</fieldset>
49</form>
50
51<!-- INCLUDE ucp_footer.html -->
Note: See TracBrowser for help on using the repository browser.