missing input type and use same font for password and text input

This commit is contained in:
marijus 2013-11-22 21:19:41 +01:00
parent 28071c7f6a
commit 72e0bd6b28
2 changed files with 5 additions and 4 deletions

View File

@ -51,7 +51,8 @@ a:hover, .fakelink:hover { color: #44AAFF; text-decoration: underline; }
}
input[type=text] {
input[type=text],
input[type=password] {
font-family: arial,freesans,sans-serif;
}
@ -458,9 +459,9 @@ footer {
clear: both;
}
#register-link, #lost-password-link {
#register-link,
#lost-password-link {
float: left;
font-size: 90%;
margin-left: 100px;
}

View File

@ -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>