]> git.mxchange.org Git - friendica.git/commitdiff
frio: provide login.tpl
authorrabuzarus <>
Sun, 12 Jun 2016 09:51:43 +0000 (11:51 +0200)
committerrabuzarus <>
Sun, 12 Jun 2016 09:51:43 +0000 (11:51 +0200)
view/theme/frio/templates/field_openid.tpl [new file with mode: 0644]
view/theme/frio/templates/field_password_1.tpl [new file with mode: 0644]
view/theme/frio/templates/login.tpl [new file with mode: 0644]

diff --git a/view/theme/frio/templates/field_openid.tpl b/view/theme/frio/templates/field_openid.tpl
new file mode 100644 (file)
index 0000000..00520b0
--- /dev/null
@@ -0,0 +1,7 @@
+
+<div id="id_{{$field.0}}_wrapper" class="form-group field input openid">
+       <label for="id_{{$field.0}}" id="label_{{$field.0}}">{{$field.1}}</label>
+       <input class="form-control" name="{{$field.0}}" id="id_{{$field.0}}" type="text" value="{{$field.2|escape:'html'}}" aria-describedby="{{$field.0}}_tip">
+       <span id="{{$field.0}}_tip" class="help-block" role="tooltip">{{$field.3}}</span>
+       <div class="clear"></div>
+</div>
\ No newline at end of file
diff --git a/view/theme/frio/templates/field_password_1.tpl b/view/theme/frio/templates/field_password_1.tpl
new file mode 100644 (file)
index 0000000..6bf16da
--- /dev/null
@@ -0,0 +1,7 @@
+
+<div id="id_{{$field.0}}_wrapper" class="form-group field input password">
+       <label for="id_{{$field.0}}" id="label_{{$field.0}}">{{$field.1}}{{if $field.4}}<span class="required"> {{$field.4}}</span>{{/if}}</label>
+       <input class="form-control" name="{{$field.0}}" id="id_{{$field.0}}" type="text" value="{{$field.2|escape:'html'}}" {{if $field.4 eq "required"}} required{{/if}}{{if $field.5 eq "autofocus"}} autofocus{{elseif $field.5}} {{$field.5}}{{/if}} aria-describedby="{{$field.0}}_tip">
+       <span id="{{$field.0}}_tip" class="help-block" role="tooltip">{{$field.3}}</span>
+       <div class="clear"></div>
+</div>
\ No newline at end of file
diff --git a/view/theme/frio/templates/login.tpl b/view/theme/frio/templates/login.tpl
new file mode 100644 (file)
index 0000000..1615294
--- /dev/null
@@ -0,0 +1,40 @@
+
+
+<form id="login-form" action="{{$dest_url}}" role="form" method="post" >
+<div id="login-group" role="group" aria-labelledby="login-head">
+       <input type="hidden" name="auth-params" value="login" />
+
+       <div id="login-head" class="sr-only">{{$login}}</div>
+
+       <div id="login_standard">
+               {{include file="field_input.tpl" field=$lname}}
+               {{include file="field_password.tpl" field=$lpassword}}
+       </div>
+       
+       {{if $openid}}
+       <div id="login_openid">
+               {{include file="field_openid.tpl" field=$lopenid}}
+       </div>
+       {{/if}}
+
+       {{include file="field_checkbox.tpl" field=$lremember}}
+
+       <div id="login-extra-links" class="list-unstyled">
+               {{if $register}}<a href="register" title="{{$register.title|escape:'html'}}" id="register-link">{{$register.desc}}</a>{{/if}}
+               <a href="lostpass" title="{{$lostpass|escape:'html'}}" id="lost-password-link" class="pull-right">{{$lostlink}}</a>
+       </div>
+
+       <div id="login-submit-wrapper" class="pull-right" >
+               <button type="submit" name="submit" id="login-submit-button" class="btn btn-primary" value="{{$login|escape:'html'}}">{{$login|escape:'html'}}</button>
+       </div>
+       <div class="clear"></div>
+       
+       {{foreach $hiddens as $k=>$v}}
+               <input type="hidden" name="{{$k}}" value="{{$v|escape:'html'}}" />
+       {{/foreach}}
+       
+</div>
+</form>
+
+
+<script type="text/javascript"> $(document).ready(function() { $("#id_{{$lname.0}}").focus();} );</script>