Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
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. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
ucp_reset_password.html
01 <!-- INCLUDE overall_header.html -->
02
03 <form action="{{ U_RESET_PASSWORD_ACTION }}" method="post" id="reset_password">
04
05 <div class="panel">
06 <div class="inner">
07
08 <div class="content">
09 <h2>{{ lang('RESET_PASSWORD') }}</h2>
10
11 <fieldset>
12 {% if S_IS_PASSWORD_RESET %}
13 {% if PASSWORD_RESET_ERRORS %}<p class="error">{{ PASSWORD_RESET_ERRORS | join('<br>') }}</p>{% endif %}
14 <dl>
15 <dt><label for="new_password">{{ lang('NEW_PASSWORD') ~ lang('COLON') }}</label><br /><span>{{ lang('CHANGE_PASSWORD_EXPLAIN') }}</span></dt>
16 <dd><input class="inputbox autowidth" type="password" name="new_password" id="new_password" size="25" maxlength="255" title="{{ lang('CHANGE_PASSWORD') }}" autocomplete="off" /></dd>
17 </dl>
18 <dl>
19 <dt><label for="new_password_confirm">{{ lang('CONFIRM_PASSWORD') ~ lang('COLON') }}</label></dt>
20 <dd><input class="inputbox autowidth" type="password" name="new_password_confirm" id="new_password_confirm" size="25" maxlength="255" title="{{ lang('CONFIRM_PASSWORD') }}" autocomplete="off" /></dd>
21 </dl>
22 {% else %}
23 {% if USERNAME_REQUIRED %}
24 <p class="error">{{ lang('EMAIL_NOT_UNIQUE') }}</p>
25 {% endif %}
26 <dl>
27 <dt><label for="email">{{ lang('EMAIL_ADDRESS') ~ lang('COLON') }}</label><br /><span>{{ lang('EMAIL_REMIND') }}</span></dt>
28 <dd><input class="inputbox autowidth" type="email" name="email" id="email" size="25" maxlength="100" value="{{ EMAIL }}" autofocus /></dd>
29 </dl>
30 {% if USERNAME_REQUIRED %}
31 <dl>
32 <dt><label for="username">{{ lang('USERNAME') ~ lang('COLON') }}</label></dt>
33 <dd><input class="inputbox autowidth" type="text" name="username" id="username" size="25" /></dd>
34 </dl>
35 {% endif %}
36 {% endif %}
37 <dl>
38 <dt> </dt>
39 <dd>{{ S_HIDDEN_FIELDS }}<input type="submit" name="submit" id="submit" class="button1" value="{{ lang('SUBMIT') }}" tabindex="2" /></dd>
40 </dl>
41 {{ S_FORM_TOKEN }}
42 </fieldset>
43 </div>
44
45 </div>
46 </div>
47 </form>
48
49 <!-- INCLUDE overall_footer.html -->
50