aboutsummaryrefslogtreecommitdiff
path: root/app/views/consultation/admin/tab.php
blob: 7b58c15999e5df58f09b6f2a61082eec1dbf22b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<form action="<?= $controller->tab($from_expired) ?>" method="post" class="default">
    <fieldset>
        <legend><?= _('Namen des Reiters ändern') ?></legend>

        <label>
            <?= _('Aktueller Name') ?>
            <?= I18N::input('tab_title', $current_title, ['required' => '']) ?>
        </label>
    </fieldset>

    <footer data-dialog-button>
        <?= Studip\Button::createAccept(_('Speichern')) ?>
        <?= Studip\Button::createCancel(
            _('Abbrechen'),
            $from_expired ? $controller->indexURL() : $controller->expiredURL()
        ) ?>
</form>