login adjustment
This commit is contained in:
parent
7644a23de4
commit
6e0b5b742c
4
boot.php
4
boot.php
@ -1553,7 +1553,7 @@ function login($register = false, $form_id = 'main-login', $hiddens=false) {
|
||||
'$form_id' => $form_id,
|
||||
'$lname' => array('username', t('Email') , '', ''),
|
||||
'$lpassword' => array('password', t('Password'), '', ''),
|
||||
'$remember' => array('remember', t('Remember me'), '', ''),
|
||||
'$remember' => array('remember', t('Remember me'), '', '',array(t('No'),t('Yes'))),
|
||||
'$hiddens' => $hiddens,
|
||||
'$register' => $reg,
|
||||
'$lostpass' => t('Forgot your password?'),
|
||||
@ -2339,4 +2339,4 @@ function check_cron_broken() {
|
||||
. 'Content-transfer-encoding: 8bit' );
|
||||
set_config('system','lastpollcheck',datetime_convert());
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
@ -282,7 +282,7 @@ footer {
|
||||
}
|
||||
|
||||
#login-main {
|
||||
max-width: 300px;
|
||||
max-width: 273px;
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
|
@ -1,29 +1,19 @@
|
||||
<form action="{{$dest_url}}" id="{{$form_id}}" method="post" >
|
||||
<input type="hidden" name="auth-params" value="login" />
|
||||
<div id="login-main">
|
||||
<div id="login_standard">
|
||||
{{include file="field_input.tpl" field=$lname}}
|
||||
{{include file="field_password.tpl" field=$lpassword}}
|
||||
<div id="login-input" class="form-group">
|
||||
{{include file="field_input.tpl" field=$lname}}
|
||||
{{include file="field_password.tpl" field=$lpassword}}
|
||||
{{include file="field_checkbox.tpl" field=$remember}}
|
||||
<button type="submit" name="submit" class="btn btn-block btn-primary">{{$login}}</button>
|
||||
</div>
|
||||
|
||||
<div id="login-extra-links">
|
||||
{{if $register}}<a href="{{$register.link}}" title="{{$register.title}}" id="register-link">{{$register.desc}}</a> |{{/if}}
|
||||
{{if $register}}<a href="{{$register.link}}" title="{{$register.title}}" id="register-link" class="pull-right">{{$register.desc}}</a>{{/if}}
|
||||
<a href="lostpass" title="{{$lostpass}}" id="lost-password-link" >{{$lostlink}}</a>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
|
||||
{{include file="field_checkbox.tpl" field=$remember}}
|
||||
|
||||
<div class="clear"></div>
|
||||
|
||||
<div id="login-submit-wrapper" >
|
||||
<input type="submit" name="submit" id="login-submit-button" class="btn btn-default" value="{{$login}}" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{foreach $hiddens as $k=>$v}}
|
||||
<input type="hidden" name="{{$k}}" value="{{$v}}" />
|
||||
{{/foreach}}
|
||||
</form>
|
||||
|
||||
<script type="text/javascript"> $(document).ready(function() { $("#id_{{$lname.0}}").focus();} );</script>
|
||||
|
Reference in New Issue
Block a user