mirror of
https://github.com/kleeja-official/kleeja.git
synced 2025-12-15 20:49:41 +01:00
95 lines
2.2 KiB
HTML
Executable File
95 lines
2.2 KiB
HTML
Executable File
|
|
|
|
<div class="mt-3 mb-3">
|
|
<h2>{title}</h2>
|
|
</div>
|
|
|
|
|
|
|
|
<!-- error messages -->
|
|
<IF NAME="ERRORS">
|
|
<div class="alert alert-danger">
|
|
<ul>
|
|
<LOOP NAME="ERRORS">
|
|
<li>{%value%}</li>
|
|
</LOOP>
|
|
</ul>
|
|
</div>
|
|
</IF>
|
|
|
|
|
|
|
|
<form action="{action}" method="post">
|
|
|
|
|
|
<IF NAME="NOT_USER">
|
|
|
|
<div class="form-group">
|
|
<label for="rname">{lang.YOURNAME}</label>
|
|
<input type="text" class="form-control" id="rname" name="rname" value="{t_rname}" >
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="rmail">{lang.EMAIL}</label>
|
|
<input type="email" class="form-control" id="rmail" name="rmail" value="{t_rmail}" style="direction:ltr">
|
|
</div>
|
|
|
|
</IF>
|
|
|
|
|
|
|
|
<IF NAME="id_d">
|
|
|
|
<div class="form-group">
|
|
<label for="rurl">{lang.FILENAME}</label>
|
|
<input type="text" class="form-control" id="rurl" name="rurl" value="{filename_for_show}" readonly="readonly">
|
|
</div>
|
|
|
|
<ELSE>
|
|
|
|
<div class="form-group">
|
|
<label for="surl">{lang.URL_F_FILE}</label>
|
|
<input type="text" class="form-control" id="surl" name="surl" value="{s_url}" style="direction:ltr">
|
|
</div>
|
|
|
|
</IF>
|
|
|
|
|
|
<div class="form-group">
|
|
<label for="surl">{lang.REASON}</label>
|
|
<textarea class="form-control" id="rtext" name="rtext" rows="3">{t_rtext}</textarea>
|
|
</div>
|
|
|
|
<!-- verification code -->
|
|
<IF NAME="config.enable_captcha==1">
|
|
|
|
<div class="form-group safe_code">
|
|
<label for="kleeja_code_answer" class=" control-label">{lang.VERTY_CODE}</label>
|
|
<div class="">
|
|
<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" class="form-control" style="max-width: 300px" autocomplete="false" id="kleeja_code_answer" aria-describedby="kleeja_code_answer_help"/>
|
|
<small id="helpBlock" id="kleeja_code_answer_help" class="form-text text-muted">{lang.NOTE_CODE}</small>
|
|
</div>
|
|
</div>
|
|
|
|
</IF>
|
|
|
|
<IF NAME="id_d">
|
|
<input name="rid" value="{id_d}" type="hidden" />
|
|
</IF>
|
|
|
|
{H_FORM_KEYS}
|
|
|
|
<div class="form-group">
|
|
<input type="submit" name="submit" value="{lang.REPORT}" class="btn btn-primary"/>
|
|
</div>
|
|
|
|
</form>
|
|
|