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

acp_prune_users.html

Zuletzt modifiziert: 09.10.2024, 12:51 - Dateigröße: 2.38 KiB


01  <!-- INCLUDE overall_header.html -->
02   
03  <a name="maincontent"></a>
04   
05  <h1>{L_ACP_PRUNE_USERS}</h1>
06   
07  <p>{L_ACP_PRUNE_USERS_EXPLAIN}</p>
08   
09  <form id="acp_prune" method="post" action="{U_ACTION}">
10      
11  <fieldset>
12      <legend>{L_ACP_PRUNE_USERS}</legend>
13  <dl>
14      <dt><label for="username">{L_USERNAME}:</label></dt>
15      <dd><input type="text" id="username" name="username" /></dd>
16  </dl>
17  <dl>
18      <dt><label for="email">{L_EMAIL}:</label></dt>
19      <dd><input type="text" id="email" name="email" /></dd>
20  </dl>
21  <dl>
22      <dt><label for="joined">{L_JOINED}:</label><br /><span>{L_JOINED_EXPLAIN}</span></dt>
23      <dd><select name="joined_select">{S_JOINED_OPTIONS}</select> <input type="text" id="joined" name="joined" /></dd>
24  </dl>
25  <dl>
26      <dt><label for="active">{L_LAST_ACTIVE}:</label><br /><span>{L_LAST_ACTIVE_EXPLAIN}</span></dt>
27      <dd><select name="active_select">{S_ACTIVE_OPTIONS}</select> <input type="text" id="active" name="active" /></dd>
28  </dl>
29  <dl>
30      <dt><label for="count">{L_POSTS}:</label></dt>
31      <dd><select name="count_select">{S_COUNT_OPTIONS}</select> <input type="text" id="count" name="count" /></dd>
32  </dl>
33  <dl>
34      <dt><label for="users">{L_ACP_PRUNE_USERS}:</label><br /><span>{L_SELECT_USERS_EXPLAIN}</span></dt>
35      <dd><textarea id="users" name="users" cols="40" rows="5"></textarea></dd>
36      <dd>[ <a href="{U_FIND_USERNAME}" onclick="find_username(this.href); return false;">{L_FIND_USERNAME}</a> ]</dd>
37  </dl>
38  <dl>
39      <dt><label for="deleteposts">{L_DELETE_USER_POSTS}:</label><br /><span>{L_DELETE_USER_POSTS_EXPLAIN}</span></dt>
40      <dd><label><input type="radio" class="radio" name="deleteposts" value="1" /> {L_YES}</label>
41          <label><input type="radio" class="radio" id="deleteposts" name="deleteposts" value="0" checked="checked" /> {L_NO}</label></dd>
42  </dl>
43  <dl>
44      <dt><label for="deactivate">{L_DEACTIVATE_DELETE}:</label><br /><span>{L_DEACTIVATE_DELETE_EXPLAIN}</span></dt>
45      <dd><label><input type="radio" class="radio" name="action" value="delete" /> {L_DELETE_USERS}</label>
46          <label><input type="radio" class="radio" id="deactivate" name="action" value="deactivate" checked="checked" /> {L_DEACTIVATE}</label></dd>
47  </dl>
48   
49  <p class="submit-buttons">
50      <input type="hidden" name="prune" value="1" />
51   
52      <input class="button1" type="submit" id="update" name="update" value="{L_SUBMIT}" />&nbsp;
53      <input class="button2" type="reset" id="reset" name="reset" value="{L_RESET}" />
54      {S_FORM_TOKEN}
55  </p>
56  </fieldset>
57  </form>
58   
59  <!-- INCLUDE overall_footer.html -->
60