]> source.dussan.org Git - nextcloud-server.git/commitdiff
replace personalblock fieldset with section class in files apps
authorJan-Christoph Borchardt <hey@jancborchardt.net>
Thu, 27 Mar 2014 15:35:34 +0000 (16:35 +0100)
committerJan-Christoph Borchardt <hey@jancborchardt.net>
Thu, 27 Mar 2014 16:00:47 +0000 (17:00 +0100)
apps/files/templates/admin.php
apps/files_encryption/templates/settings-admin.php
apps/files_encryption/templates/settings-personal.php
apps/files_external/templates/settings.php

index a5afd55fbc3938263c9e745be7281175f9fe123a..5f7d3261d6c1a5dd2e6b16f347a2493f3e072a06 100644 (file)
@@ -1,28 +1,26 @@
 <?php OCP\Util::addscript('files', 'admin'); ?>
 
-<form name="filesForm" action='#' method='post'>
-       <fieldset class="personalblock">
-               <h2><?php p($l->t('File handling')); ?></h2>
-               <?php if($_['uploadChangable']):?>
-                       <label for="maxUploadSize"><?php p($l->t( 'Maximum upload size' )); ?> </label>
-                       <input type="text" name='maxUploadSize' id="maxUploadSize" value='<?php p($_['uploadMaxFilesize']) ?>'/>
-                       <?php if($_['displayMaxPossibleUploadSize']):?>
-                               (<?php p($l->t('max. possible: ')); p($_['maxPossibleUploadSize']) ?>)
-                       <?php endif;?>
-                       <br/>
+<form name="filesForm" class="section" action="#" method="post">
+       <h2><?php p($l->t('File handling')); ?></h2>
+       <?php if($_['uploadChangable']):?>
+               <label for="maxUploadSize"><?php p($l->t( 'Maximum upload size' )); ?> </label>
+               <input type="text" name='maxUploadSize' id="maxUploadSize" value='<?php p($_['uploadMaxFilesize']) ?>'/>
+               <?php if($_['displayMaxPossibleUploadSize']):?>
+                       (<?php p($l->t('max. possible: ')); p($_['maxPossibleUploadSize']) ?>)
                <?php endif;?>
-               <input type="checkbox" name="allowZipDownload" id="allowZipDownload" value="1"
-                          title="<?php p($l->t( 'Needed for multi-file and folder downloads.' )); ?>"
-                          <?php if ($_['allowZipDownload']): ?> checked="checked"<?php endif; ?> />
-               <label for="allowZipDownload"><?php p($l->t( 'Enable ZIP-download' )); ?></label><br/>
+               <br/>
+       <?php endif;?>
+       <input type="checkbox" name="allowZipDownload" id="allowZipDownload" value="1"
+                  title="<?php p($l->t( 'Needed for multi-file and folder downloads.' )); ?>"
+                  <?php if ($_['allowZipDownload']): ?> checked="checked"<?php endif; ?> />
+       <label for="allowZipDownload"><?php p($l->t( 'Enable ZIP-download' )); ?></label><br/>
 
-               <input type="text" name="maxZipInputSize" id="maxZipInputSize" style="width:180px;" value='<?php p($_['maxZipInputSize']) ?>'
-                          title="<?php p($l->t( '0 is unlimited' )); ?>"
-                          <?php if (!$_['allowZipDownload']): ?> disabled="disabled"<?php endif; ?> /><br />
-               <em><?php p($l->t( 'Maximum input size for ZIP files' )); ?> </em><br />
+       <input type="text" name="maxZipInputSize" id="maxZipInputSize" style="width:180px;" value='<?php p($_['maxZipInputSize']) ?>'
+                  title="<?php p($l->t( '0 is unlimited' )); ?>"
+                  <?php if (!$_['allowZipDownload']): ?> disabled="disabled"<?php endif; ?> /><br />
+       <em><?php p($l->t( 'Maximum input size for ZIP files' )); ?> </em><br />
 
-               <input type="hidden" value="<?php p($_['requesttoken']); ?>" name="requesttoken" />
-               <input type="submit" name="submitFilesAdminSettings" id="submitFilesAdminSettings"
-                          value="<?php p($l->t( 'Save' )); ?>"/>
-       </fieldset>
+       <input type="hidden" value="<?php p($_['requesttoken']); ?>" name="requesttoken" />
+       <input type="submit" name="submitFilesAdminSettings" id="submitFilesAdminSettings"
+                  value="<?php p($l->t( 'Save' )); ?>"/>
 </form>
index 231a68b6a587d51ed097593b60407da2d55426a1..cf676c445cedbba510a471628b3f8cfaf37121bc 100644 (file)
@@ -1,63 +1,60 @@
-<form id="encryption">
-       <fieldset class="personalblock">
+<form id="encryption" class="section">
+       <h2><?php p($l->t('Encryption')); ?></h2>
 
-               <h2><?php p($l->t('Encryption')); ?></h2>
+       <p>
+               <?php p($l->t("Enable recovery key (allow to recover users files in case of password loss):")); ?>
+               <br/>
+               <br/>
+               <input type="password" name="encryptionRecoveryPassword" id="encryptionRecoveryPassword"/>
+               <label for="recoveryPassword"><?php p($l->t("Recovery key password")); ?></label>
+               <br/>
+               <input type="password" name="encryptionRecoveryPassword" id="repeatEncryptionRecoveryPassword"/>
+               <label for="repeatEncryptionRecoveryPassword"><?php p($l->t("Repeat Recovery key password")); ?></label>
+               <br/>
+               <input
+                       type='radio'
+                       name='adminEnableRecovery'
+                       value='1'
+                       <?php echo($_["recoveryEnabled"] === '1' ? 'checked="checked"' : 'disabled'); ?> />
+               <?php p($l->t("Enabled")); ?>
+               <br/>
 
-               <p>
-                       <?php p($l->t("Enable recovery key (allow to recover users files in case of password loss):")); ?>
-                       <br/>
-                       <br/>
-                       <input type="password" name="encryptionRecoveryPassword" id="encryptionRecoveryPassword"/>
-                       <label for="recoveryPassword"><?php p($l->t("Recovery key password")); ?></label>
-                       <br/>
-                       <input type="password" name="encryptionRecoveryPassword" id="repeatEncryptionRecoveryPassword"/>
-                       <label for="repeatEncryptionRecoveryPassword"><?php p($l->t("Repeat Recovery key password")); ?></label>
-                       <br/>
-                       <input
-                               type='radio'
-                               name='adminEnableRecovery'
-                               value='1'
-                               <?php echo($_["recoveryEnabled"] === '1' ? 'checked="checked"' : 'disabled'); ?> />
-                       <?php p($l->t("Enabled")); ?>
-                       <br/>
+               <input
+                       type='radio'
+                       name='adminEnableRecovery'
+                       value='0'
+                       <?php echo($_["recoveryEnabled"] === '0' ? 'checked="checked"' : 'disabled'); ?> />
+               <?php p($l->t("Disabled")); ?>
+       </p>
+       <br/><br/>
 
-                       <input
-                               type='radio'
-                               name='adminEnableRecovery'
-                               value='0'
-                               <?php echo($_["recoveryEnabled"] === '0' ? 'checked="checked"' : 'disabled'); ?> />
-                       <?php p($l->t("Disabled")); ?>
-               </p>
+       <p name="changeRecoveryPasswordBlock" <?php if ($_['recoveryEnabled'] === '0') print_unescaped('class="hidden"');?>>
+               <strong><?php p($l->t("Change recovery key password:")); ?></strong>
                <br/><br/>
-
-               <p name="changeRecoveryPasswordBlock" <?php if ($_['recoveryEnabled'] === '0') print_unescaped('class="hidden"');?>>
-                       <strong><?php p($l->t("Change recovery key password:")); ?></strong>
-                       <br/><br/>
-                       <input
-                               type="password"
-                               name="changeRecoveryPassword"
-                               id="oldEncryptionRecoveryPassword"
-                       <label for="oldEncryptionRecoveryPassword"><?php p($l->t("Old Recovery key password")); ?></label>
-                       <br/>
-                       <br/>
-                       <input
-                               type="password"
-                               name="changeRecoveryPassword"
-                               id="newEncryptionRecoveryPassword"
-                       <label for="newEncryptionRecoveryPassword"><?php p($l->t("New Recovery key password")); ?></label>
-                       <br/>
-                       <input
-                               type="password"
-                               name="changeRecoveryPassword"
-                               id="repeatedNewEncryptionRecoveryPassword"
-                       <label for="repeatEncryptionRecoveryPassword"><?php p($l->t("Repeat New Recovery key password")); ?></label>
-                       <br/>
-                       <button
-                               type="button"
-                               name="submitChangeRecoveryKey"
-                               disabled><?php p($l->t("Change Password")); ?>
-                       </button>
-                       <span class="msg"></span>
-               </p>
-       </fieldset>
+               <input
+                       type="password"
+                       name="changeRecoveryPassword"
+                       id="oldEncryptionRecoveryPassword"
+               <label for="oldEncryptionRecoveryPassword"><?php p($l->t("Old Recovery key password")); ?></label>
+               <br/>
+               <br/>
+               <input
+                       type="password"
+                       name="changeRecoveryPassword"
+                       id="newEncryptionRecoveryPassword"
+               <label for="newEncryptionRecoveryPassword"><?php p($l->t("New Recovery key password")); ?></label>
+               <br/>
+               <input
+                       type="password"
+                       name="changeRecoveryPassword"
+                       id="repeatedNewEncryptionRecoveryPassword"
+               <label for="repeatEncryptionRecoveryPassword"><?php p($l->t("Repeat New Recovery key password")); ?></label>
+               <br/>
+               <button
+                       type="button"
+                       name="submitChangeRecoveryKey"
+                       disabled><?php p($l->t("Change Password")); ?>
+               </button>
+               <span class="msg"></span>
+       </p>
 </form>
index 1b4239d82cd78503a76d4a1d41dc7912a7a3820b..8139ece19505e8bc4e4dd619e8c3beb7a14ad4a2 100644 (file)
@@ -1,66 +1,63 @@
-<form id="encryption">\r
-       <fieldset class="personalblock">\r
-               <h2><?php p( $l->t( 'Encryption' ) ); ?></h2>\r
+<form id="encryption" class="section">\r
+       <h2><?php p( $l->t( 'Encryption' ) ); ?></h2>\r
 \r
-               <?php if ( $_["initialized"] === '1' ): ?>\r
-                       <p>\r
-                               <a name="changePKPasswd" />\r
-                               <label for="changePrivateKeyPasswd">\r
-                                       <?php p( $l->t( "Your private key password no longer match your log-in password:" ) ); ?>\r
-                               </label>\r
-                               <br />\r
-                               <em><?php p( $l->t( "Set your old private key password to your current log-in password." ) ); ?>\r
-                               <?php if (  $_["recoveryEnabledForUser"] ):\r
-                                               p( $l->t( " If you don't remember your old password you can ask your administrator to recover your files." ) );\r
-                               endif; ?>\r
-                               </em>\r
-                               <br />\r
-                               <input\r
-                                       type="password"\r
-                                       name="changePrivateKeyPassword"\r
-                                       id="oldPrivateKeyPassword" />\r
-                               <label for="oldPrivateKeyPassword"><?php p($l->t( "Old log-in password" )); ?></label>\r
-                               <br />\r
-                               <input\r
-                                       type="password"\r
-                                       name="changePrivateKeyPassword"\r
-                                       id="newPrivateKeyPassword" />\r
-                               <label for="newRecoveryPassword"><?php p($l->t( "Current log-in password" )); ?></label>\r
-                               <br />\r
-                               <button\r
-                                       type="button"\r
-                                       name="submitChangePrivateKeyPassword"\r
-                                       disabled><?php p($l->t( "Update Private Key Password" )); ?>\r
-                               </button>\r
-                               <span class="msg"></span>\r
-                       </p>\r
-               <?php endif; ?>\r
-\r
-               <?php if ( $_["recoveryEnabled"] && $_["privateKeySet"] ): ?>\r
+       <?php if ( $_["initialized"] === '1' ): ?>\r
+               <p>\r
+                       <a name="changePKPasswd" />\r
+                       <label for="changePrivateKeyPasswd">\r
+                               <?php p( $l->t( "Your private key password no longer match your log-in password:" ) ); ?>\r
+                       </label>\r
+                       <br />\r
+                       <em><?php p( $l->t( "Set your old private key password to your current log-in password." ) ); ?>\r
+                       <?php if (  $_["recoveryEnabledForUser"] ):\r
+                                       p( $l->t( " If you don't remember your old password you can ask your administrator to recover your files." ) );\r
+                       endif; ?>\r
+                       </em>\r
+                       <br />\r
+                       <input\r
+                               type="password"\r
+                               name="changePrivateKeyPassword"\r
+                               id="oldPrivateKeyPassword" />\r
+                       <label for="oldPrivateKeyPassword"><?php p($l->t( "Old log-in password" )); ?></label>\r
+                       <br />\r
+                       <input\r
+                               type="password"\r
+                               name="changePrivateKeyPassword"\r
+                               id="newPrivateKeyPassword" />\r
+                       <label for="newRecoveryPassword"><?php p($l->t( "Current log-in password" )); ?></label>\r
                        <br />\r
-                       <p>\r
-                               <label for="userEnableRecovery"><?php p( $l->t( "Enable password recovery:" ) ); ?></label>\r
-                               <br />\r
-                               <em><?php p( $l->t( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" ) ); ?></em>\r
-                               <br />\r
-                               <input\r
-                               type='radio'\r
-                               name='userEnableRecovery'\r
-                               value='1'\r
-                               <?php echo ( $_["recoveryEnabledForUser"] == 1 ? 'checked="checked"' : '' ); ?> />\r
-                               <?php p( $l->t( "Enabled" ) ); ?>\r
-                               <br />\r
+                       <button\r
+                               type="button"\r
+                               name="submitChangePrivateKeyPassword"\r
+                               disabled><?php p($l->t( "Update Private Key Password" )); ?>\r
+                       </button>\r
+                       <span class="msg"></span>\r
+               </p>\r
+       <?php endif; ?>\r
 \r
-                               <input\r
-                               type='radio'\r
-                               name='userEnableRecovery'\r
-                               value='0'\r
-                               <?php echo ( $_["recoveryEnabledForUser"] == 0 ? 'checked="checked"' : '' ); ?> />\r
-                               <?php p( $l->t( "Disabled" ) ); ?>\r
-                               <div id="recoveryEnabledSuccess"><?php p( $l->t( 'File recovery settings updated' ) ); ?></div>\r
-                               <div id="recoveryEnabledError"><?php p( $l->t( 'Could not update file recovery' ) ); ?></div>\r
-                       </p>\r
-               <?php endif; ?>\r
+       <?php if ( $_["recoveryEnabled"] && $_["privateKeySet"] ): ?>\r
+               <br />\r
+               <p>\r
+                       <label for="userEnableRecovery"><?php p( $l->t( "Enable password recovery:" ) ); ?></label>\r
+                       <br />\r
+                       <em><?php p( $l->t( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" ) ); ?></em>\r
+                       <br />\r
+                       <input\r
+                       type='radio'\r
+                       name='userEnableRecovery'\r
+                       value='1'\r
+                       <?php echo ( $_["recoveryEnabledForUser"] == 1 ? 'checked="checked"' : '' ); ?> />\r
+                       <?php p( $l->t( "Enabled" ) ); ?>\r
+                       <br />\r
 \r
-       </fieldset>\r
+                       <input\r
+                       type='radio'\r
+                       name='userEnableRecovery'\r
+                       value='0'\r
+                       <?php echo ( $_["recoveryEnabledForUser"] == 0 ? 'checked="checked"' : '' ); ?> />\r
+                       <?php p( $l->t( "Disabled" ) ); ?>\r
+                       <div id="recoveryEnabledSuccess"><?php p( $l->t( 'File recovery settings updated' ) ); ?></div>\r
+                       <div id="recoveryEnabledError"><?php p( $l->t( 'Could not update file recovery' ) ); ?></div>\r
+               </p>\r
+       <?php endif; ?>\r
 </form>\r
index 5e84fa8a25286969b241ac21c9070564249139d5..e7be16bede1a2ca0c7806e115b97885fcd6f883f 100644 (file)
-<form id="files_external">
-       <fieldset class="personalblock">
+<form id="files_external" class="section">
        <h2><?php p($l->t('External Storage')); ?></h2>
-               <?php if (isset($_['dependencies']) and ($_['dependencies']<>'')) print_unescaped(''.$_['dependencies'].''); ?>
-               <table id="externalStorage" class="grid" data-admin='<?php print_unescaped(json_encode($_['isAdminPage'])); ?>'>
-                       <thead>
-                               <tr>
-                                       <th></th>
-                                       <th><?php p($l->t('Folder name')); ?></th>
-                                       <th><?php p($l->t('External storage')); ?></th>
-                                       <th><?php p($l->t('Configuration')); ?></th>
-                                       <!--<th><?php p($l->t('Options')); ?></th> -->
-                                       <?php if ($_['isAdminPage']) print_unescaped('<th>'.$l->t('Applicable').'</th>'); ?>
-                                       <th>&nbsp;</th>
-                               </tr>
-                       </thead>
-                       <tbody width="100%">
-                       <?php $_['mounts'] = array_merge($_['mounts'], array('' => array())); ?>
-                       <?php foreach ($_['mounts'] as $mount): ?>
-                               <tr <?php print_unescaped(($mount['mountpoint'] !== '') ? 'class="'.OC_Util::sanitizeHTML($mount['class']).'"' : 'id="addMountPoint"'); ?>>
-                                       <td class="status">
-                                       <?php if (isset($mount['status'])): ?>
-                                               <span class="<?php p(($mount['status']) ? 'success' : 'error'); ?>"></span>
-                                       <?php endif; ?>
+       <?php if (isset($_['dependencies']) and ($_['dependencies']<>'')) print_unescaped(''.$_['dependencies'].''); ?>
+       <table id="externalStorage" class="grid" data-admin='<?php print_unescaped(json_encode($_['isAdminPage'])); ?>'>
+               <thead>
+                       <tr>
+                               <th></th>
+                               <th><?php p($l->t('Folder name')); ?></th>
+                               <th><?php p($l->t('External storage')); ?></th>
+                               <th><?php p($l->t('Configuration')); ?></th>
+                               <!--<th><?php p($l->t('Options')); ?></th> -->
+                               <?php if ($_['isAdminPage']) print_unescaped('<th>'.$l->t('Applicable').'</th>'); ?>
+                               <th>&nbsp;</th>
+                       </tr>
+               </thead>
+               <tbody width="100%">
+               <?php $_['mounts'] = array_merge($_['mounts'], array('' => array())); ?>
+               <?php foreach ($_['mounts'] as $mount): ?>
+                       <tr <?php print_unescaped(($mount['mountpoint'] !== '') ? 'class="'.OC_Util::sanitizeHTML($mount['class']).'"' : 'id="addMountPoint"'); ?>>
+                               <td class="status">
+                               <?php if (isset($mount['status'])): ?>
+                                       <span class="<?php p(($mount['status']) ? 'success' : 'error'); ?>"></span>
+                               <?php endif; ?>
+                               </td>
+                               <td class="mountPoint"><input type="text" name="mountPoint"
+                                                                                         value="<?php p($mount['mountpoint']); ?>"
+                                                                                         placeholder="<?php p($l->t('Folder name')); ?>" /></td>
+                               <?php if ($mount['mountpoint'] == ''): ?>
+                                       <td class="backend">
+                                               <select id="selectBackend" data-configurations='<?php print_unescaped(json_encode($_['backends'])); ?>'>
+                                                       <option value="" disabled selected
+                                                                       style="display:none;"><?php p($l->t('Add storage')); ?></option>
+                                                       <?php foreach ($_['backends'] as $class => $backend): ?>
+                                                               <option value="<?php p($class); ?>"><?php p($backend['backend']); ?></option>
+                                                       <?php endforeach; ?>
+                                               </select>
                                        </td>
-                                       <td class="mountPoint"><input type="text" name="mountPoint"
-                                                                                                 value="<?php p($mount['mountpoint']); ?>"
-                                                                                                 placeholder="<?php p($l->t('Folder name')); ?>" /></td>
-                                       <?php if ($mount['mountpoint'] == ''): ?>
-                                               <td class="backend">
-                                                       <select id="selectBackend" data-configurations='<?php print_unescaped(json_encode($_['backends'])); ?>'>
-                                                               <option value="" disabled selected
-                                                                               style="display:none;"><?php p($l->t('Add storage')); ?></option>
-                                                               <?php foreach ($_['backends'] as $class => $backend): ?>
-                                                                       <option value="<?php p($class); ?>"><?php p($backend['backend']); ?></option>
-                                                               <?php endforeach; ?>
-                                                       </select>
-                                               </td>
-                                       <?php else: ?>
-                                               <td class="backend"
-                                                       data-class="<?php p($mount['class']); ?>"><?php p($mount['backend']); ?></td>
-                                       <?php endif; ?>
-                                       <td class ="configuration" width="100%">
-                                               <?php if (isset($mount['options'])): ?>
-                                                       <?php foreach ($mount['options'] as $parameter => $value): ?>
-                                                               <?php if (isset($_['backends'][$mount['class']]['configuration'][$parameter])): ?>
-                                                                       <?php $placeholder = $_['backends'][$mount['class']]['configuration'][$parameter]; ?>
-                                                                       <?php if (strpos($placeholder, '*') !== false): ?>
-                                                                               <input type="password"
-                                                                                          data-parameter="<?php p($parameter); ?>"
-                                                                                          value="<?php p($value); ?>"
-                                                                                          placeholder="<?php p(substr($placeholder, 1)); ?>" />
-                                                                       <?php elseif (strpos($placeholder, '!') !== false): ?>
-                                                                               <label><input type="checkbox"
-                                                                                                         data-parameter="<?php p($parameter); ?>"
-                                                                                                         <?php if ($value == 'true'): ?> checked="checked"<?php endif; ?>
-                                                                                                         /><?php p(substr($placeholder, 1)); ?></label>
-                                                                       <?php elseif (strpos($placeholder, '&') !== false): ?>
-                                                                               <input type="text"
-                                                                                          class="optional"
-                                                                                          data-parameter="<?php p($parameter); ?>"
-                                                                                          value="<?php p($value); ?>"
-                                                                                          placeholder="<?php p(substr($placeholder, 1)); ?>" />
-                                                                       <?php elseif (strpos($placeholder, '#') !== false): ?>
-                                                                               <input type="hidden"
-                                                                                          data-parameter="<?php p($parameter); ?>"
-                                                                                          value="<?php p($value); ?>" />
-                                                                       <?php else: ?>
-                                                                               <input type="text"
-                                                                                          data-parameter="<?php p($parameter); ?>"
-                                                                                          value="<?php p($value); ?>"
-                                                                                          placeholder="<?php p($placeholder); ?>" />
-                                                                       <?php endif; ?>
+                               <?php else: ?>
+                                       <td class="backend"
+                                               data-class="<?php p($mount['class']); ?>"><?php p($mount['backend']); ?></td>
+                               <?php endif; ?>
+                               <td class ="configuration" width="100%">
+                                       <?php if (isset($mount['options'])): ?>
+                                               <?php foreach ($mount['options'] as $parameter => $value): ?>
+                                                       <?php if (isset($_['backends'][$mount['class']]['configuration'][$parameter])): ?>
+                                                               <?php $placeholder = $_['backends'][$mount['class']]['configuration'][$parameter]; ?>
+                                                               <?php if (strpos($placeholder, '*') !== false): ?>
+                                                                       <input type="password"
+                                                                                  data-parameter="<?php p($parameter); ?>"
+                                                                                  value="<?php p($value); ?>"
+                                                                                  placeholder="<?php p(substr($placeholder, 1)); ?>" />
+                                                               <?php elseif (strpos($placeholder, '!') !== false): ?>
+                                                                       <label><input type="checkbox"
+                                                                                                 data-parameter="<?php p($parameter); ?>"
+                                                                                                 <?php if ($value == 'true'): ?> checked="checked"<?php endif; ?>
+                                                                                                 /><?php p(substr($placeholder, 1)); ?></label>
+                                                               <?php elseif (strpos($placeholder, '&') !== false): ?>
+                                                                       <input type="text"
+                                                                                  class="optional"
+                                                                                  data-parameter="<?php p($parameter); ?>"
+                                                                                  value="<?php p($value); ?>"
+                                                                                  placeholder="<?php p(substr($placeholder, 1)); ?>" />
+                                                               <?php elseif (strpos($placeholder, '#') !== false): ?>
+                                                                       <input type="hidden"
+                                                                                  data-parameter="<?php p($parameter); ?>"
+                                                                                  value="<?php p($value); ?>" />
+                                                               <?php else: ?>
+                                                                       <input type="text"
+                                                                                  data-parameter="<?php p($parameter); ?>"
+                                                                                  value="<?php p($value); ?>"
+                                                                                  placeholder="<?php p($placeholder); ?>" />
                                                                <?php endif; ?>
-                                                       <?php endforeach; ?>
-                                                       <?php if (isset($_['backends'][$mount['class']]['custom']) && !in_array('files_external/js/'.$_['backends'][$mount['class']]['custom'], \OC_Util::$scripts)): ?>
-                                                               <?php OCP\Util::addScript('files_external', $_['backends'][$mount['class']]['custom']); ?>
                                                        <?php endif; ?>
+                                               <?php endforeach; ?>
+                                               <?php if (isset($_['backends'][$mount['class']]['custom']) && !in_array('files_external/js/'.$_['backends'][$mount['class']]['custom'], \OC_Util::$scripts)): ?>
+                                                       <?php OCP\Util::addScript('files_external', $_['backends'][$mount['class']]['custom']); ?>
                                                <?php endif; ?>
-                                       </td>
-                                       <?php if ($_['isAdminPage']): ?>
-                                       <td class="applicable"
-                                               align="right"
-                                               data-applicable-groups='<?php if (isset($mount['applicable']['groups']))
-                                                                                                               print_unescaped(json_encode($mount['applicable']['groups'])); ?>'
-                                               data-applicable-users='<?php if (isset($mount['applicable']['users']))
-                                                                                                               print_unescaped(json_encode($mount['applicable']['users'])); ?>'>
-                                                       <select class="chzn-select"
-                                                                       multiple style="width:20em;"
-                                                                       data-placeholder="<?php p($l->t('None set')); ?>">
-                                                               <option value="all" <?php if (isset($mount['applicable']['users']) && in_array('all', $mount['applicable']['users'])) print_unescaped('selected="selected"');?> ><?php p($l->t('All Users')); ?></option>
-                                                               <optgroup label="<?php p($l->t('Groups')); ?>">
-                                                               <?php foreach ($_['groups'] as $group): ?>
-                                                                       <option value="<?php p($group); ?>(group)"
-                                                                       <?php if (isset($mount['applicable']['groups']) && in_array($group, $mount['applicable']['groups'])): ?>
-                                                                                       selected="selected"
-                                                                       <?php endif; ?>><?php p($group); ?></option>
-                                                               <?php endforeach; ?>
-                                                               </optgroup>
-                                                               <optgroup label="<?php p($l->t('Users')); ?>">
-                                                               <?php foreach ($_['users'] as $user): ?>
-                                                                       <option value="<?php p($user); ?>"
-                                                                       <?php if (isset($mount['applicable']['users']) && in_array($user, $mount['applicable']['users'])): ?>
-                                                                                       selected="selected"
-                                                                       <?php endif; ?>><?php p($_['userDisplayNames'][$user]); ?></option>
-                                                               <?php endforeach; ?>
-                                                               </optgroup>
-                                                       </select>
-                                               </td>
                                        <?php endif; ?>
-                                       <td <?php if ($mount['mountpoint'] != ''): ?>class="remove"
-                                               <?php else: ?>style="visibility:hidden;"
-                                               <?php endif ?>><img alt="<?php p($l->t('Delete')); ?>"
-                                                                                       title="<?php p($l->t('Delete')); ?>"
-                                                                                       class="svg action"
-                                                                                       src="<?php print_unescaped(image_path('core', 'actions/delete.svg')); ?>" /></td>
-                               </tr>
-                       <?php endforeach; ?>
-                       </tbody>
-               </table>
-               <br />
+                               </td>
+                               <?php if ($_['isAdminPage']): ?>
+                               <td class="applicable"
+                                       align="right"
+                                       data-applicable-groups='<?php if (isset($mount['applicable']['groups']))
+                                                                                                       print_unescaped(json_encode($mount['applicable']['groups'])); ?>'
+                                       data-applicable-users='<?php if (isset($mount['applicable']['users']))
+                                                                                                       print_unescaped(json_encode($mount['applicable']['users'])); ?>'>
+                                               <select class="chzn-select"
+                                                               multiple style="width:20em;"
+                                                               data-placeholder="<?php p($l->t('None set')); ?>">
+                                                       <option value="all" <?php if (isset($mount['applicable']['users']) && in_array('all', $mount['applicable']['users'])) print_unescaped('selected="selected"');?> ><?php p($l->t('All Users')); ?></option>
+                                                       <optgroup label="<?php p($l->t('Groups')); ?>">
+                                                       <?php foreach ($_['groups'] as $group): ?>
+                                                               <option value="<?php p($group); ?>(group)"
+                                                               <?php if (isset($mount['applicable']['groups']) && in_array($group, $mount['applicable']['groups'])): ?>
+                                                                               selected="selected"
+                                                               <?php endif; ?>><?php p($group); ?></option>
+                                                       <?php endforeach; ?>
+                                                       </optgroup>
+                                                       <optgroup label="<?php p($l->t('Users')); ?>">
+                                                       <?php foreach ($_['users'] as $user): ?>
+                                                               <option value="<?php p($user); ?>"
+                                                               <?php if (isset($mount['applicable']['users']) && in_array($user, $mount['applicable']['users'])): ?>
+                                                                               selected="selected"
+                                                               <?php endif; ?>><?php p($_['userDisplayNames'][$user]); ?></option>
+                                                       <?php endforeach; ?>
+                                                       </optgroup>
+                                               </select>
+                                       </td>
+                               <?php endif; ?>
+                               <td <?php if ($mount['mountpoint'] != ''): ?>class="remove"
+                                       <?php else: ?>style="visibility:hidden;"
+                                       <?php endif ?>><img alt="<?php p($l->t('Delete')); ?>"
+                                                                               title="<?php p($l->t('Delete')); ?>"
+                                                                               class="svg action"
+                                                                               src="<?php print_unescaped(image_path('core', 'actions/delete.svg')); ?>" /></td>
+                       </tr>
+               <?php endforeach; ?>
+               </tbody>
+       </table>
+       <br />
 
-               <?php if ($_['isAdminPage']): ?>
-                       <br />
-                       <input type="checkbox" name="allowUserMounting" id="allowUserMounting"
-                               value="1" <?php if ($_['allowUserMounting'] == 'yes') print_unescaped(' checked="checked"'); ?> />
-                       <label for="allowUserMounting"><?php p($l->t('Enable User External Storage')); ?></label> <span id="userMountingMsg" class="msg"></span>
+       <?php if ($_['isAdminPage']): ?>
+               <br />
+               <input type="checkbox" name="allowUserMounting" id="allowUserMounting"
+                       value="1" <?php if ($_['allowUserMounting'] == 'yes') print_unescaped(' checked="checked"'); ?> />
+               <label for="allowUserMounting"><?php p($l->t('Enable User External Storage')); ?></label> <span id="userMountingMsg" class="msg"></span>
 
-                       <p id="userMountingBackups"<?php if ($_['allowUserMounting'] != 'yes'): ?> class="hidden"<?php endif; ?>>
-                               <?php p($l->t('Allow users to mount the following external storage')); ?><br />
-                               <?php $i = 0; foreach ($_['personal_backends'] as $class => $backend): ?>
-                                       <input type="checkbox" id="allowUserMountingBackends<?php p($i); ?>" name="allowUserMountingBackends[]" value="<?php p($class); ?>" <?php if ($backend['enabled']) print_unescaped(' checked="checked"'); ?> />
-                                       <label for="allowUserMountingBackends<?php p($i); ?>"><?php p($backend['backend']); ?></label> <br />
-                                       <?php $i++; ?>
-                               <?php endforeach; ?>
-                       </p>
-               <?php endif; ?>
-       </fieldset>
+               <p id="userMountingBackups"<?php if ($_['allowUserMounting'] != 'yes'): ?> class="hidden"<?php endif; ?>>
+                       <?php p($l->t('Allow users to mount the following external storage')); ?><br />
+                       <?php $i = 0; foreach ($_['personal_backends'] as $class => $backend): ?>
+                               <input type="checkbox" id="allowUserMountingBackends<?php p($i); ?>" name="allowUserMountingBackends[]" value="<?php p($class); ?>" <?php if ($backend['enabled']) print_unescaped(' checked="checked"'); ?> />
+                               <label for="allowUserMountingBackends<?php p($i); ?>"><?php p($backend['backend']); ?></label> <br />
+                               <?php $i++; ?>
+                       <?php endforeach; ?>
+               </p>
+       <?php endif; ?>
 </form>
 
 <?php if ( ! $_['isAdminPage']):  ?>