aboutsummaryrefslogtreecommitdiff
path: root/app/views/new_password/set.php
blob: 7fa28cad08850012db07e215f6dcf42ed012651b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<form class="default" action="<?= $controller->url_for('new_password/set/' . $token_id) ?>" method="post">
    <?= CSRFProtection::tokenTag() ?>
    <fieldset>
        <legend>
            <?= _('Neues Passwort setzen') ?>
        </legend>

        <label>
            <?= _('Neues Passwort') ?>
            <input type="password" name="new_password" placeholder="<?= _('Neues Passwort') ?>">
        </label>

        <label>
            <?= _('Neues Passwort wiederholen') ?>
            <input type="password" name="new_password_confirm" placeholder="<?= _('Neues Passwort wiederholen') ?>">
        </label>
    </fieldset>

    <footer>
        <?= Studip\Button::createAccept(_('Passwort setzen')) ?>
        <?= Studip\LinkButton::createCancel(_('Abbrechen'), $controller->url_for('start')) ?>
    </footer>
</form>