mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Fix #2086 missing CAPTCHA in message module skin
This commit is contained in:
parent
4c9b14f077
commit
9bb2e40ef4
3 changed files with 13 additions and 2 deletions
|
|
@ -15,6 +15,7 @@ body, #access table, #access input, #access textarea, #access select, #access bu
|
|||
#access>.login-footer:before,
|
||||
#access>.login-footer:after{display:table;line-height:0;content:"";clear:both}
|
||||
#access .control-group{position:relative;padding:0 14px 0 0;margin:0;clear:both}
|
||||
#access .control-group.captcha { margin-bottom:10px}
|
||||
#access .control-group:before{content:"";display:block;clear:both}
|
||||
#access .message{padding:0.8em 1em}
|
||||
#access .message.location{word-break:break-all}
|
||||
|
|
|
|||
|
|
@ -30,9 +30,14 @@
|
|||
<input type="email" name="user_id" id="uid" title="{$lang->email_address}" placeholder="{$lang->email_address}" required autofocus cond="$member_config->identifier == 'email_address'" />
|
||||
<input type="password" name="password" id="upw" title="{$lang->password}" placeholder="{$lang->password}" required />
|
||||
</div>
|
||||
<!--@if(SpamfilterModel::isCaptchaEnabled('login'))-->
|
||||
<div class="control-group captcha">
|
||||
{SpamfilterModel::getCaptcha('login')|noescape}
|
||||
</div>
|
||||
<!--@endif-->
|
||||
<div class="control-group">
|
||||
<label for="keepid">
|
||||
<input type="checkbox" name="keep_signed" id="keepid" class="inputCheck" value="Y" onclick="jQuery('#warning')[(jQuery('#keepid:checked').size()>0?'addClass':'removeClass')]('open');" />
|
||||
<input type="checkbox" name="keep_signed" id="keepid" class="inputCheck" value="Y" onclick="jQuery('#warning')[(jQuery('#keepid:checked').size()>0?'addClass':'removeClass')]('open');" />
|
||||
{$lang->keep_signed}
|
||||
</label>
|
||||
<p id="warning">{$lang->about_keep_warning}</p>
|
||||
|
|
|
|||
|
|
@ -26,8 +26,13 @@
|
|||
<input type="text" name="user_id" id="uid" title="{$lang->user_id}" placeholder="{$lang->user_id}" required autofocus cond="$member_config->identifier != 'email_address'" />
|
||||
<input type="email" name="user_id" id="uid" title="{$lang->email_address}" placeholder="{$lang->email_address}" required autofocus cond="$member_config->identifier == 'email_address'" />
|
||||
<input type="password" name="password" id="upw" title="{$lang->password}" placeholder="{$lang->password}" required />
|
||||
<!--@if(SpamfilterModel::isCaptchaEnabled('login'))-->
|
||||
<div class="control-group captcha">
|
||||
{SpamfilterModel::getCaptcha('login')|noescape}
|
||||
</div>
|
||||
<!--@endif-->
|
||||
<label for="keepid" cond="!$system_message_detail">
|
||||
<input type="checkbox" name="keep_signed" id="keepid" class="inputCheck" value="Y" onclick="jQuery('#warning')[(jQuery('#keepid:checked').size()>0?'addClass':'removeClass')]('open');" />
|
||||
<input type="checkbox" name="keep_signed" id="keepid" class="inputCheck" value="Y" onclick="jQuery('#warning')[(jQuery('#keepid:checked').size()>0?'addClass':'removeClass')]('open');" />
|
||||
{$lang->keep_signed}
|
||||
</label>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue