aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/field_input.tpl
diff options
context:
space:
mode:
authormarijus <mario@localhost.localdomain>2013-11-22 21:19:41 +0100
committermarijus <mario@localhost.localdomain>2013-11-22 21:19:41 +0100
commit72e0bd6b28fbb2e13a02573a053430493f97c14b (patch)
tree8b3573a5f2808a58abb2439b584df9e9ecbe74cd /view/tpl/field_input.tpl
parent28071c7f6a455fd70ad1ebad103c5780657a8583 (diff)
downloadvolse-hubzilla-72e0bd6b28fbb2e13a02573a053430493f97c14b.tar.gz
volse-hubzilla-72e0bd6b28fbb2e13a02573a053430493f97c14b.tar.bz2
volse-hubzilla-72e0bd6b28fbb2e13a02573a053430493f97c14b.zip
missing input type and use same font for password and text input
Diffstat (limited to 'view/tpl/field_input.tpl')
-rwxr-xr-xview/tpl/field_input.tpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/field_input.tpl b/view/tpl/field_input.tpl
index d5b3d6b4e..a584f95e7 100755
--- a/view/tpl/field_input.tpl
+++ b/view/tpl/field_input.tpl
@@ -1,6 +1,6 @@
<div class='field input'>
<label for='id_{{$field.0}}' id='label_{{$field.0}}'>{{$field.1}}</label>
- <input name='{{$field.0}}' id='id_{{$field.0}}' value="{{$field.2}}">{{if $field.4}} <span class="required">{{$field.4}}</span> {{/if}}
+ <input name='{{$field.0}}' id='id_{{$field.0}}' type="text" value="{{$field.2}}">{{if $field.4}} <span class="required">{{$field.4}}</span> {{/if}}
<span id='help_{{$field.0}}' class='field_help'>{{$field.3}}</span>
<div id='end_{{$field.0}}' class='field_end'></div>
</div>