diff options
| author | Philipp Schüttlöffel <schuettloeffel@zqs.uni-hannover.de> | 2024-09-24 10:53:31 +0200 |
|---|---|---|
| committer | Philipp Schüttlöffel <schuettloeffel@zqs.uni-hannover.de> | 2024-09-24 10:53:31 +0200 |
| commit | 4459dd7917f4d1c34f40bb68f0e991e9c3d53e4c (patch) | |
| tree | 5c07151ae61276d334e88f6309c30d439a85c12e /app/views/file/add_url.php | |
| parent | da0022e5c1abbf9825ae76debaabdff7e8623bb4 (diff) | |
| parent | 97a188592c679890a25c37ab78463add76a52ff7 (diff) | |
Merge branch 'main' into issue-3911issue-3911
Diffstat (limited to 'app/views/file/add_url.php')
| -rw-r--r-- | app/views/file/add_url.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/app/views/file/add_url.php b/app/views/file/add_url.php index 1b7196b..8a172c9 100644 --- a/app/views/file/add_url.php +++ b/app/views/file/add_url.php @@ -13,25 +13,25 @@ value="<?= htmlReady(Request::get('name')) ?>"> </label> - <label> - <?= _('Zugriffsart') ?> - </label> + </fieldset> + <fieldset> + <legend><?= _('Zugriffsart') ?></legend> <label> <input type="radio" name="access_type" value="redirect" - <? if (Request::option('access_type') !== 'proxy') echo 'checked'; ?>> + <? if (Request::option('access_type') !== 'proxy') echo 'checked'; ?>> <?= _('Direktlink')?> </label> <label> <input type="radio" name="access_type" value="proxy" - <? if (Request::option('access_type') === 'proxy') echo 'checked'; ?>> + <? if (Request::option('access_type') === 'proxy') echo 'checked'; ?>> <?= _('Link über Proxy')?> </label> - <?= $this->render_partial('file/_terms_of_use_select.php', [ - 'content_terms_of_use_entries' => $content_terms_of_use_entries, - 'selected_terms_of_use_id' => $content_terms_of_use_id, - ]) ?> - </fieldset> + </fieldset> + <?= $this->render_partial('file/_terms_of_use_select.php', [ + 'content_terms_of_use_entries' => $content_terms_of_use_entries, + 'selected_terms_of_use_id' => $content_terms_of_use_id, + ]) ?> <footer data-dialog-button> <?= Studip\Button::createAccept(_('Speichern'), 'store') ?> <?= Studip\LinkButton::createCancel( |
