aboutsummaryrefslogtreecommitdiff
path: root/templates/usermanagement/question_form.php
blob: 3e75d8cc0da3a20618e42c98554244c598e337e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?
# Lifter010: TODO
?>
<div class="modaloverlay">
    <div class="messagebox">
        <div class="content">
            <?= formatReady($question) ?>
        </div>
        <div class="content">
            <form action="<?= $action ?>" method="post">
                <?= CSRFProtection::tokenTag() ?>
                <?foreach($elements as $e) :?>
                    <div style="margin-top: 0.5em; text-align: left;">
                        <?= $e?>
                    </div>
                <?endforeach?>
                <div class="buttons">
                    <?= $approvalbutton ?>
                    <span style="margin-left: 1em;">
                        <?= $disapprovalbutton ?>
                    </span>
                </div>
            </form>
        </div>
    </div>
</div>