mirror of
https://github.com/kleeja-official/kleeja.git
synced 2025-12-15 20:49:41 +01:00
64 lines
1.6 KiB
HTML
Executable File
64 lines
1.6 KiB
HTML
Executable File
<!-- Password Recovery Template -->
|
|
<div id="content" class="border_radius">
|
|
|
|
<!-- title -->
|
|
<h1 class="title">● {title}</h1>
|
|
<!-- @end-title -->
|
|
|
|
<!-- line top -->
|
|
<div class="line"></div>
|
|
<!-- @end-line -->
|
|
|
|
<IF NAME="ERRORS">
|
|
<!-- msg, Infos & Alerts & Errors -->
|
|
<dl id="system-message">
|
|
<dd class="error">
|
|
<ul><LOOP NAME="ERRORS">
|
|
<li>{%value%}</li></LOOP>
|
|
</ul>
|
|
</dd>
|
|
</dl>
|
|
<!-- @end-msg -->
|
|
</IF>
|
|
|
|
<!-- form -->
|
|
<form action="{action}" method="post">
|
|
<div class="get_password">
|
|
<p>{lang.E_GET_LOSTPASS}</p>
|
|
<div class="clr"></div>
|
|
<label>{lang.EMAIL} :</label>
|
|
<input type="text" name="rmail" value="{t_rmail}" size="50" style="direction:ltr;" tabindex="1" />
|
|
<div class="clr"></div>
|
|
</div>
|
|
|
|
<div class="clr"></div>
|
|
|
|
<!-- verification code -->
|
|
<IF NAME="config.enable_captcha==1">
|
|
<div class="safe_code">
|
|
<p>{lang.VERTY_CODE}</p>
|
|
<div class="clr"></div>
|
|
<div>
|
|
<img style="vertical-align:middle;" id="kleeja_img_captcha" src="{captcha_file_path}" alt="{lang.REFRESH_CAPTCHA}" title="{lang.REFRESH_CAPTCHA}" onclick="javascript:update_kleeja_captcha('{captcha_file_path}', 'kleeja_code_answer');" />
|
|
<input type="text" name="kleeja_code_answer" id="kleeja_code_answer" tabindex="4" />
|
|
</div>
|
|
<div class="clr"></div>
|
|
<p class="explain">{lang.NOTE_CODE}</p>
|
|
</div>
|
|
</IF>
|
|
<!-- @end-verification-code -->
|
|
|
|
<div class="clr"></div>
|
|
|
|
{H_FORM_KEYS}
|
|
|
|
<input type="submit" name="submit" value="{lang.GET_LOSTPASS}" tabindex="3" />
|
|
|
|
</form>
|
|
<!-- @end-form -->
|
|
|
|
<div class="clr"></div>
|
|
|
|
</div>
|
|
<!-- @end-Password-Recovery-Template -->
|