2016-06-12 05:51:43 -04:00
|
|
|
|
|
|
|
<form id="login-form" action="{{$dest_url}}" role="form" method="post" >
|
2017-09-02 11:49:55 -04:00
|
|
|
<div id="login-group" role="group" aria-labelledby="login-head">
|
|
|
|
<input type="hidden" name="auth-params" value="login" />
|
2016-06-12 05:51:43 -04:00
|
|
|
|
2017-09-02 11:49:55 -04:00
|
|
|
<div id="login-head" class="sr-only">{{$login}}</div>
|
2016-06-12 05:51:43 -04:00
|
|
|
|
2017-09-02 11:49:55 -04:00
|
|
|
<div id="login_standard">
|
|
|
|
{{include file="field_input.tpl" field=$lname}}
|
|
|
|
{{include file="field_password.tpl" field=$lpassword}}
|
2018-04-23 16:03:29 -04:00
|
|
|
<div id="login-lost-password-link">
|
2018-12-13 22:28:12 -05:00
|
|
|
<a href="lostpass" title="{{$lostpass}}" id="lost-password-link" >{{$lostlink}}</a>
|
2018-04-23 16:03:29 -04:00
|
|
|
</div>
|
2018-04-27 16:00:46 -04:00
|
|
|
<div id="login-end"></div>
|
2017-09-02 11:49:55 -04:00
|
|
|
</div>
|
2016-06-12 05:51:43 -04:00
|
|
|
|
2017-09-02 11:49:55 -04:00
|
|
|
{{if $openid}}
|
|
|
|
<div id="login_openid">
|
|
|
|
{{include file="field_openid.tpl" field=$lopenid}}
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
2016-06-12 05:51:43 -04:00
|
|
|
|
2017-09-02 11:49:55 -04:00
|
|
|
{{include file="field_checkbox.tpl" field=$lremember}}
|
|
|
|
|
2018-01-17 10:01:34 -05:00
|
|
|
<div id="login-submit-wrapper">
|
|
|
|
<div class="pull-right" >
|
2018-12-13 22:28:12 -05:00
|
|
|
<button type="submit" name="submit" id="login-submit-button" class="btn btn-primary" value="{{$login}}">{{$login}}</button>
|
2018-01-17 10:01:34 -05:00
|
|
|
</div>
|
2017-09-02 11:49:55 -04:00
|
|
|
</div>
|
2018-01-17 10:01:34 -05:00
|
|
|
|
2017-09-02 11:49:55 -04:00
|
|
|
|
|
|
|
{{foreach $hiddens as $k=>$v}}
|
2018-12-13 22:28:12 -05:00
|
|
|
<input type="hidden" name="{{$k}}" value="{{$v}}" />
|
2017-09-02 11:49:55 -04:00
|
|
|
{{/foreach}}
|
2016-06-12 05:51:43 -04:00
|
|
|
|
2018-04-24 17:16:15 -04:00
|
|
|
<div id="login-end"></div>
|
2016-06-12 05:51:43 -04:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
2018-04-23 16:03:29 -04:00
|
|
|
{{if $register}}
|
|
|
|
<div id="login-extra-links">
|
2018-12-13 22:28:12 -05:00
|
|
|
<h3 id="login-head" class="sr-only">{{$register.title}}</h3>
|
2019-10-24 16:23:26 -04:00
|
|
|
<a href="{{$register.url}}" title="{{$register.title}}" id="register-link" class="btn btn-default">{{$register.desc}}</a>
|
2018-04-23 16:03:29 -04:00
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
|
2016-06-12 05:51:43 -04:00
|
|
|
<script type="text/javascript"> $(document).ready(function() { $("#id_{{$lname.0}}").focus();} );</script>
|