aboutsummaryrefslogtreecommitdiff
path: root/app/views/shared/contacts/new_ansprechpartner.php
blob: 2c4b700d3c56412f30b0512509412c23d770cc95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<form class="default" action="<?= $controller->action_link('new_ansprechpartner') ?>" method="post" data-dialog="size=auto">

    <label>
        <select id="mvv-contacts-range_types" name="range_type">
        <? foreach ($allowed_object_types as $object_type) : ?>
            <option value="<?= $object_type ?>"><?= htmlReady($object_type::getClassDisplayName()) ?></option>
        <? endforeach; ?>
        </select>
    </label>

    <?= CSRFProtection::tokenTag(); ?>
    <div data-dialog-button>
        <?= Studip\Button::createAccept(_('Weiter'), 'store') ?>
        <?= Studip\LinkButton::createCancel(); ?>
    </div>

</form>