diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-10-04 18:35:46 +0300 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-10-05 11:23:49 +0200 |
commit | 2b521327c03974a7a45ebef2ce377346bdf9484d (patch) | |
tree | dde215939efad71bdd4889af2a7cc4c6ceea9879 /apps | |
parent | cc1e69c1902a9cf6c6c68cdaa3f1eead09ca7a5c (diff) | |
download | nextcloud-server-2b521327c03974a7a45ebef2ce377346bdf9484d.tar.gz nextcloud-server-2b521327c03974a7a45ebef2ce377346bdf9484d.zip |
more elegant style for Personal and Admin settings
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/templates/admin.php | 2 | ||||
-rw-r--r-- | apps/files_external/templates/settings.php | 4 | ||||
-rwxr-xr-x | apps/user_webdavauth/templates/settings.php | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/apps/files/templates/admin.php b/apps/files/templates/admin.php index e1ca6afc4ad..697fc52526a 100644 --- a/apps/files/templates/admin.php +++ b/apps/files/templates/admin.php @@ -2,7 +2,7 @@ <form name="filesForm" action='#' method='post'> <fieldset class="personalblock"> - <legend><strong><?php p($l->t('File handling')); ?></strong></legend> + <h2><?php p($l->t('File handling')); ?></h2> <?php if($_['uploadChangable']):?> <label for="maxUploadSize"><?php p($l->t( 'Maximum upload size' )); ?> </label> <input name='maxUploadSize' id="maxUploadSize" value='<?php p($_['uploadMaxFilesize']) ?>'/> diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index b3c08e21225..028a384cf34 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -1,6 +1,6 @@ <form id="files_external"> <fieldset class="personalblock"> - <legend><strong><?php p($l->t('External Storage')); ?></strong></legend> + <h2><?php p($l->t('External Storage')); ?></h2> <?php if (isset($_['dependencies']) and ($_['dependencies']<>'')) print_unescaped(''.$_['dependencies'].''); ?> <table id="externalStorage" data-admin='<?php print_unescaped(json_encode($_['isAdminPage'])); ?>'> <thead> @@ -138,7 +138,7 @@ enctype="multipart/form-data" action="<?php p(OCP\Util::linkTo('files_external', 'ajax/addRootCertificate.php')); ?>"> <fieldset class="personalblock"> - <legend><strong><?php p($l->t('SSL root certificates'));?></strong></legend> + <h2><?php p($l->t('SSL root certificates'));?></h2> <table id="sslCertificate" data-admin='<?php print_unescaped(json_encode($_['isAdminPage'])); ?>'> <tbody width="100%"> <?php foreach ($_['certs'] as $rootCert): ?> diff --git a/apps/user_webdavauth/templates/settings.php b/apps/user_webdavauth/templates/settings.php index 70c10057c20..ad1701add8c 100755 --- a/apps/user_webdavauth/templates/settings.php +++ b/apps/user_webdavauth/templates/settings.php @@ -1,6 +1,6 @@ <form id="webdavauth" action="#" method="post"> <fieldset class="personalblock"> - <legend><strong><?php p($l->t('WebDAV Authentication'));?></strong></legend> + <h2><?php p($l->t('WebDAV Authentication'));?></h2> <p><label for="webdav_url"><?php p($l->t('Address: '));?><input type="url" placeholder="https://example.com/webdav" id="webdav_url" name="webdav_url" value="<?php p($_['webdav_url']); ?>"></label> <input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']) ?>" id="requesttoken"> <input type="submit" value="Save" /> |