fix login
This commit is contained in:
parent
6e64f9af54
commit
b4a2f764ab
@ -277,75 +277,11 @@ footer {
|
|||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#main-login {
|
#login-main {
|
||||||
|
max-width: 300px;
|
||||||
margin-top: 50px;
|
margin-top: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#main-login #id_username, #main-login #id_password {
|
|
||||||
width: 200px;
|
|
||||||
padding: 10px;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-login #id_remember {
|
|
||||||
float: left;
|
|
||||||
padding: 0;
|
|
||||||
margin-bottom: 0;
|
|
||||||
margin-left: 0;
|
|
||||||
width: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-login .field.checkbox > label {
|
|
||||||
margin-bottom: 0;
|
|
||||||
float: left;
|
|
||||||
width: 100px;
|
|
||||||
padding-left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-login .field_end {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
#main-login .field.input label, #main-login .field.password label {
|
|
||||||
float: left;
|
|
||||||
width: 100px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#login_standard {
|
|
||||||
width: 350px;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#login_standard input,
|
|
||||||
#login_openid input {
|
|
||||||
width: 180px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#login-extra-links {
|
|
||||||
clear: both;
|
|
||||||
width: 300px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#register-link {
|
|
||||||
float: left;
|
|
||||||
margin-left: 100px;
|
|
||||||
}
|
|
||||||
#lost-password-link {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
#login-standard-end {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
#login-submit-button {
|
|
||||||
|
|
||||||
margin-left: 100px;
|
|
||||||
margin-top: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#cropimage-wrapper, #cropimage-preview-wrapper {
|
#cropimage-wrapper, #cropimage-preview-wrapper {
|
||||||
float: left;
|
float: left;
|
||||||
padding: 30px;
|
padding: 30px;
|
||||||
|
@ -1,33 +1,29 @@
|
|||||||
|
|
||||||
<form action="{{$dest_url}}" id="{{$form_id}}" method="post" >
|
<form action="{{$dest_url}}" id="{{$form_id}}" method="post" >
|
||||||
<input type="hidden" name="auth-params" value="login" />
|
<input type="hidden" name="auth-params" value="login" />
|
||||||
|
<div id="login-main">
|
||||||
<div id="login_standard">
|
<div id="login_standard">
|
||||||
{{include file="field_input.tpl" field=$lname}}
|
{{include file="field_input.tpl" field=$lname}}
|
||||||
{{include file="field_password.tpl" field=$lpassword}}
|
{{include file="field_password.tpl" field=$lpassword}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="login-extra-links">
|
<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">{{$register.desc}}</a> |{{/if}}
|
||||||
<a href="lostpass" title="{{$lostpass}}" id="lost-password-link" >{{$lostlink}}</a>
|
<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>
|
</div>
|
||||||
|
|
||||||
<div class="clear"></div>
|
|
||||||
|
|
||||||
{{include file="field_checkbox.tpl" field=$remember}}
|
|
||||||
|
|
||||||
<div id="login-standard-end"></div>
|
|
||||||
|
|
||||||
<div id="login-submit-wrapper" >
|
|
||||||
<input type="submit" name="submit" id="login-submit-button" class="btn btn-default" value="{{$login}}" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{{foreach $hiddens as $k=>$v}}
|
{{foreach $hiddens as $k=>$v}}
|
||||||
<input type="hidden" name="{{$k}}" value="{{$v}}" />
|
<input type="hidden" name="{{$k}}" value="{{$v}}" />
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
|
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
|
||||||
<script type="text/javascript"> $(document).ready(function() { $("#id_{{$lname.0}}").focus();} );</script>
|
<script type="text/javascript"> $(document).ready(function() { $("#id_{{$lname.0}}").focus();} );</script>
|
||||||
|
Reference in New Issue
Block a user