diff options
author | Hendrik Leppelsack <hendrik@leppelsack.de> | 2015-10-29 11:36:20 +0100 |
---|---|---|
committer | Hendrik Leppelsack <hendrik@leppelsack.de> | 2015-10-29 13:03:55 +0100 |
commit | d2f0055af428fe5b78df1afe57b3f8351b512b84 (patch) | |
tree | fb3ca264800ca78abeb6a0e6b6378e665e7071de /settings | |
parent | 675c6963ba2986e8a5609d5a2cf79e1e89167947 (diff) | |
download | nextcloud-server-d2f0055af428fe5b78df1afe57b3f8351b512b84.tar.gz nextcloud-server-d2f0055af428fe5b78df1afe57b3f8351b512b84.zip |
apply new checkbox style in users settings
Diffstat (limited to 'settings')
-rw-r--r-- | settings/templates/users/main.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/settings/templates/users/main.php b/settings/templates/users/main.php index 0abe31f4a59..f50f83b38b3 100644 --- a/settings/templates/users/main.php +++ b/settings/templates/users/main.php @@ -46,35 +46,35 @@ translation('settings'); <div id="userlistoptions"> <p> <input type="checkbox" name="StorageLocation" value="StorageLocation" id="CheckboxStorageLocation" - <?php if ($_['show_storage_location'] === 'true') print_unescaped('checked="checked"'); ?> /> + class="checkbox" <?php if ($_['show_storage_location'] === 'true') print_unescaped('checked="checked"'); ?> /> <label for="CheckboxStorageLocation"> <?php p($l->t('Show storage location')) ?> </label> </p> <p> <input type="checkbox" name="LastLogin" value="LastLogin" id="CheckboxLastLogin" - <?php if ($_['show_last_login'] === 'true') print_unescaped('checked="checked"'); ?> /> + class="checkbox" <?php if ($_['show_last_login'] === 'true') print_unescaped('checked="checked"'); ?> /> <label for="CheckboxLastLogin"> <?php p($l->t('Show last log in')) ?> </label> </p> <p> <input type="checkbox" name="UserBackend" value="UserBackend" id="CheckboxUserBackend" - <?php if ($_['show_backend'] === 'true') print_unescaped('checked="checked"'); ?> /> + class="checkbox" <?php if ($_['show_backend'] === 'true') print_unescaped('checked="checked"'); ?> /> <label for="CheckboxUserBackend"> <?php p($l->t('Show user backend')) ?> </label> </p> <p> <input type="checkbox" name="MailOnUserCreate" value="MailOnUserCreate" id="CheckboxMailOnUserCreate" - <?php if ($_['send_email'] === 'true') print_unescaped('checked="checked"'); ?> /> + class="checkbox" <?php if ($_['send_email'] === 'true') print_unescaped('checked="checked"'); ?> /> <label for="CheckboxMailOnUserCreate"> <?php p($l->t('Send email to new user')) ?> </label> </p> <p> <input type="checkbox" name="EmailAddress" value="EmailAddress" id="CheckboxEmailAddress" - <?php if ($_['show_email'] === 'true') print_unescaped('checked="checked"'); ?> /> + class="checkbox" <?php if ($_['show_email'] === 'true') print_unescaped('checked="checked"'); ?> /> <label for="CheckboxEmailAddress"> <?php p($l->t('Show email address')) ?> </label> |