]> git.mxchange.org Git - friendica.git/blob - view/theme/frost-mobile/login.tpl
Merge branch 'master' of github.com:CyberDomovoy/friendica into threaded_items
[friendica.git] / view / theme / frost-mobile / login.tpl
1
2 <div class="login-form">
3 <form action="$dest_url" method="post" >
4         <input type="hidden" name="auth-params" value="login" />
5
6         <div id="login_standard">
7         {{ inc field_input.tpl with $field=$lname }}{{ endinc }}
8         {{ inc field_password.tpl with $field=$lpassword }}{{ endinc }}
9         </div>
10         
11         {{ if $openid }}
12                         <div id="login_openid">
13                         {{ inc field_openid.tpl with $field=$lopenid }}{{ endinc }}
14                         </div>
15         {{ endif }}
16
17         <br />
18         <div id='login-footer'>
19 <!--    <div class="login-extra-links">
20         By signing in you agree to the latest <a href="tos.html" title="$tostitle" id="terms-of-service-link" >$toslink</a> and <a href="privacy.html" title="$privacytitle" id="privacy-link" >$privacylink</a>
21         </div>-->
22
23         <br />
24         <div id="login-submit-wrapper" >
25                 <input type="submit" name="submit" id="login-submit-button" value="$login" />
26         </div>
27
28         <br /><br />
29         <div class="login-extra-links">
30                 {{ if $register }}<a href="register" title="$register.title" id="register-link">$register.desc</a>{{ endif }}
31         <a href="lostpass" title="$lostpass" id="lost-password-link" >$lostlink</a>
32         </div>
33         </div>
34         
35         {{ for $hiddens as $k=>$v }}
36                 <input type="hidden" name="$k" value="$v" />
37         {{ endfor }}
38         
39         
40 </form>
41 </div>
42
43 <script type="text/javascript"> $(document).ready(function() { $("#id_$lname.0").focus();} );</script>