mirror of
https://github.com/kleeja-official/kleeja.git
synced 2025-12-15 20:49:41 +01:00
69 lines
1.8 KiB
HTML
Executable File
69 lines
1.8 KiB
HTML
Executable File
<!-- Contact Us 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 Contact Us -->
|
|
<form action="{action}" method="post">
|
|
<div class="call">
|
|
<IF NAME="NOT_USER">
|
|
<label>{lang.YOURNAME} :</label>
|
|
<input type="text" name="cname" value="{t_cname}" size="30" tabindex="1" />
|
|
<label>{lang.EMAIL} :</label>
|
|
<input type="text" name="cmail" value="{t_cmail}" size="30" style="direction:ltr" tabindex="2" />
|
|
</IF>
|
|
<label>{lang.TEXT} :</label>
|
|
<textarea name="ctext" class="text_area" rows="6" cols="40" tabindex="3">{t_ctext}</textarea>
|
|
</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.SEND}" tabindex="5" />
|
|
|
|
</form>
|
|
<!-- @end-form -->
|
|
|
|
<div class="clr"></div>
|
|
|
|
</div>
|
|
<!-- @end-Contact-Us-template -->
|