diff options
Diffstat (limited to 'view/tpl/login.tpl')
-rwxr-xr-x[-rw-r--r--] | view/tpl/login.tpl | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/view/tpl/login.tpl b/view/tpl/login.tpl index 149c46e4c..e530429b2 100644..100755 --- a/view/tpl/login.tpl +++ b/view/tpl/login.tpl @@ -1,31 +1,36 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} -<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" /> <div id="login_standard"> - {{ inc field_input.tpl with $field=$lname }}{{ endinc }} - {{ inc field_password.tpl with $field=$lpassword }}{{ endinc }} + {{include file="field_input.tpl" field=$lname}} + {{include file="field_password.tpl" field=$lpassword}} </div> <div id="login-extra-links"> - {{ if $register }}<a href="$register.link" title="$register.title" id="register-link">$register.desc</a>{{ endif }} - <a href="lostpass" title="$lostpass" id="lost-password-link" >$lostlink</a> + {{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> </div> - {{ inc field_checkbox.tpl with $field=$remember }}{{ endinc }} + {{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" value="$login" /> + <input type="submit" name="submit" id="login-submit-button" value="{{$login}}" /> </div> - {{ for $hiddens as $k=>$v }} - <input type="hidden" name="$k" value="$v" /> - {{ endfor }} + {{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> +<script type="text/javascript"> $(document).ready(function() { $("#id_{{$lname.0}}").focus();} );</script> |