]> git.mxchange.org Git - friendica.git/commitdiff
template for input fields now supports required, autofocus and types email, url
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 16 Jan 2015 18:31:23 +0000 (19:31 +0100)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 16 Jan 2015 18:31:23 +0000 (19:31 +0100)
view/templates/field_input.tpl

index 41a636fca40a292a8c69297bf47b1edc90eb9440..457ae946e3e3e1eb12c19d6955dc623fa6b43e2c 100644 (file)
@@ -1,6 +1,6 @@
        
        <div class='field input' id='wrapper_{{$field.0}}'>
                <label for='id_{{$field.0}}'>{{$field.1}}</label>
-               <input name='{{$field.0}}' id='id_{{$field.0}}' value="{{$field.2}}">
+               <input{{if $field.6 eq 'email'}} type='email'{{elseif $field.6 eq 'url'}} type='url'{{/if}} name='{{$field.0}}' id='id_{{$field.0}}' value="{{$field.2}}" {{if $field.4 eq 'required'}}required{{/if}} {{if $field.5 eq 'autofocus'}}autofocus{{/if}}>
                <span class='field_help'>{{$field.3}}</span>
        </div>