diff options
author | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2014-06-24 19:34:36 +0200 |
---|---|---|
committer | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2014-06-24 19:34:36 +0200 |
commit | b8dc9e855af2d30f33d0f90dc13d8cad0a7b3e70 (patch) | |
tree | 718df6305bcb82c8dcb4b287a7132422e748cdfb /view/tpl/settings_account.tpl | |
parent | c2d520f1be115fb3cb5da2a35eb10146cecee8aa (diff) | |
parent | a92fb0b04c3e6474ec48faf8e4cc65c382e89d66 (diff) | |
download | volse-hubzilla-b8dc9e855af2d30f33d0f90dc13d8cad0a7b3e70.tar.gz volse-hubzilla-b8dc9e855af2d30f33d0f90dc13d8cad0a7b3e70.tar.bz2 volse-hubzilla-b8dc9e855af2d30f33d0f90dc13d8cad0a7b3e70.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'view/tpl/settings_account.tpl')
-rwxr-xr-x[-rw-r--r--] | view/tpl/settings_account.tpl | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/view/tpl/settings_account.tpl b/view/tpl/settings_account.tpl index d1a635f91..fcddb3f86 100644..100755 --- a/view/tpl/settings_account.tpl +++ b/view/tpl/settings_account.tpl @@ -1,28 +1,28 @@ -<h1>$title</h1> +<div class="generic-content-wrapper"> +<h1>{{$title}}</h1> <div id="settings-remove-account-link"> -<a href="removeme" title="$permanent" >$removeme</a> +<a href="removeme" title="{{$permanent}}" >{{$removeme}}</a> </div> <form action="settings/account" id="settings-account-form" method="post" autocomplete="off" > -<input type='hidden' name='form_security_token' value='$form_security_token'> +<input type='hidden' name='form_security_token' value='{{$form_security_token}}'> -{{inc field_input.tpl with $field=$email }}{{endinc}} +{{include file="field_input.tpl" field=$email}} -<h3 class="settings-heading">$h_pass</h3> +<h3 class="settings-heading">{{$h_pass}}</h3> -{{inc field_password.tpl with $field=$password1 }}{{endinc}} -{{inc field_password.tpl with $field=$password2 }}{{endinc}} +{{include file="field_password.tpl" field=$password1}} +{{include file="field_password.tpl" field=$password2}} <div class="settings-submit-wrapper" > -<input type="submit" name="submit" class="settings-submit" value="$submit" /> +<input type="submit" name="submit" class="settings-submit" value="{{$submit}}" /> </div> -$account_settings - - +{{$account_settings}} +</div> |