diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-03-13 21:19:15 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-03-13 21:19:15 +0100 |
commit | 370a007ee215d2889d9bf760b0247678c08d31ac (patch) | |
tree | d2909607def088cc347fb01ea8ae046860e4408c /view/tpl | |
parent | 7efffbf102d7954a973816c75054bed7fdefebf6 (diff) | |
download | volse-hubzilla-370a007ee215d2889d9bf760b0247678c08d31ac.tar.gz volse-hubzilla-370a007ee215d2889d9bf760b0247678c08d31ac.tar.bz2 volse-hubzilla-370a007ee215d2889d9bf760b0247678c08d31ac.zip |
more janitor work on profiles
Diffstat (limited to 'view/tpl')
-rwxr-xr-x | view/tpl/profile_edit.tpl | 51 |
1 files changed, 14 insertions, 37 deletions
diff --git a/view/tpl/profile_edit.tpl b/view/tpl/profile_edit.tpl index f3f3efd6f..779e1aca3 100755 --- a/view/tpl/profile_edit.tpl +++ b/view/tpl/profile_edit.tpl @@ -54,63 +54,39 @@ {{include file="field_checkbox.tpl" field=$hide_friends}} -<div class="profile-edit-submit-wrapper" > -<input type="submit" name="submit" class="profile-edit-submit-button" value="{{$submit}}" /> +<div class="form-group" > +<button type="submit" name="submit" class="btn btn-primary" value="{{$submit}}">{{$submit}}</button> </div> -<div class="profile-edit-submit-end"></div> +<div class="clear"></div> {{if $fields.address}} -<div id="profile-edit-address-wrapper" class="form-group field" > -<label id="profile-edit-address-label" for="profile-edit-address" >{{$lbl_address}} </label> -<input type="text" class="form-control" size="32" name="address" id="profile-edit-address" value="{{$address}}" /> -</div> -<div id="profile-edit-address-end"></div> +{{include file="field_input.tpl" field=$address}} {{/if}} {{if $fields.locality}} -<div id="profile-edit-locality-wrapper" class="form-group field" > -<label id="profile-edit-locality-label" for="profile-edit-locality" >{{$lbl_city}} </label> -<input type="text" class="form-control" size="32" name="locality" id="profile-edit-locality" value="{{$locality}}" /> -</div> -<div id="profile-edit-locality-end"></div> +{{include file="field_input.tpl" field=$locality}} {{/if}} {{if $fields.postal_code}} -<div id="profile-edit-postal-code-wrapper" class="form-group field" > -<label id="profile-edit-postal-code-label" for="profile-edit-postal-code" >{{$lbl_zip}} </label> -<input type="text" class="form-control" size="32" name="postal_code" id="profile-edit-postal-code" value="{{$postal_code}}" /> -</div> -<div id="profile-edit-postal-code-end"></div> +{{include file="field_input.tpl" field=$postal_code}} {{/if}} {{if $fields.region}} -<div id="profile-edit-region-wrapper" class="form-group field" > -<label id="profile-edit-region-label" for="profile-edit-region" >{{$lbl_region}} </label> -<input type="text" class="form-control" size="32" name="region" id="profile-edit-region" value="{{$region}}" /> -</div> -<div id="profile-edit-region-end"></div> +{{include file="field_input.tpl" field=$region}} {{/if}} {{if $fields.country_name}} -<div id="profile-edit-country-name-wrapper" class="form-group field" > -<label id="profile-edit-country-name-label" for="profile-edit-country-name" >{{$lbl_country}} </label> -<input type="text" class="form-control" size="32" name="country_name" id="profile-edit-country-name" value="{{$country_name}}" /> -</div> -<div id="profile-edit-country-name-end"></div> +{{include file="field_input.tpl" field=$country_name}} {{/if}} {{if $fields.hometown}} -<div id="profile-edit-hometown-wrapper" class="form-group field" > -<label id="profile-edit-hometown-label" for="profile-edit-hometown" >{{$lbl_hometown}} </label> -<input type="text" class="form-control" size="32" name="hometown" id="profile-edit-hometown" value="{{$hometown}}" /> -</div> -<div id="profile-edit-hometown-end"></div> +{{include file="field_input.tpl" field=$hometown}} {{/if}} -<div class="profile-edit-submit-wrapper" class="form-group field" > -<input type="submit" name="submit" class="profile-edit-submit-button" value="{{$submit}}" /> +<div class="form-group" > +<button type="submit" name="submit" class="btn btn-primary" value="{{$submit}}">{{$submit}}</button> </div> -<div class="profile-edit-submit-end"></div> +<div class="clear"></div> {{if $fields.marital }} <div id="profile-edit-marital-wrapper" class="form-group field" > @@ -121,6 +97,7 @@ {{$marital_min}} {{/if}} </div> + <div class="clear"></div> {{if $fields.with}} <label id="profile-edit-with-label" for="profile-edit-with" > {{$lbl_with}} </label> @@ -134,7 +111,7 @@ {{/if}} <div id="profile-edit-marital-end"></div> {{/if}} -<br /><br /> + {{if $fields.homepage}} <div id="profile-edit-homepage-wrapper" class="form-group field" > <label id="profile-edit-homepage-label" for="profile-edit-homepage" >{{$lbl_homepage}} </label> |