aboutsummaryrefslogtreecommitdiff
path: root/app/views/course/lti/config.php
blob: e9994035a0b53dbe917a2b58eab1e54bd130b2d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<form class="default" action="<?= $controller->link_for('course/lti/save_config') ?>" method="post">
    <?= CSRFProtection::tokenTag() ?>
    <fieldset>
        <legend>
            <?= _('Einstellungen') ?>
        </legend>

        <label>
            <span class="required">
                <?= _('Titel des Reiters') ?>
            </span>
            <input type="text" name="title" value="<?= htmlReady($title) ?>" required>
        </label>
    </fieldset>

    <footer data-dialog-button>
        <?= Studip\Button::createAccept(_('Speichern'), 'save') ?>
        <?= Studip\LinkButton::createCancel(_('Abbrechen'), $controller->url_for('course/lti')) ?>
    </footer>
</form>