Verzeichnisstruktur phpBB-3.0.0


Veröffentlicht
12.12.2007

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

ucp_prefs_post.html

Zuletzt modifiziert: 09.10.2024, 12:53 - Dateigröße: 2.15 KiB


01  <!-- INCLUDE ucp_header.html -->
02   
03  <form id="ucp" method="post" action="{S_UCP_ACTION}"{S_FORM_ENCTYPE}>
04   
05  <h2>{L_TITLE}</h2>
06  <div class="panel">
07      <div class="inner"><span class="corners-top"><span></span></span>
08   
09      <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 -->