blob: 366992e6e2bbe75a9456635971dd535f4cc40741 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<form method="post" action="<?= $controller->store() ?>" class="default">
<?= CSRFProtection::tokenTag() ?>
<fieldset>
<legend id="accessibility"><?= _('Barrierefreiheitseinstellungen') ?></legend>
<label>
<input type="checkbox" name="enable_high_contrast"
value="1"
<? if ($config->USER_HIGH_CONTRAST) echo 'checked'; ?>>
<?= _('Kontrastreiches Farbschema aktivieren') ?>
<?= tooltipIcon(
_('Mit dieser Einstellung wird ein Farbschema mit hohem Kontrast aktiviert.')
) ?>
</label>
</fieldset>
<footer>
<?= \Studip\Button::create(_('Speichern')) ?>
</footer>
</form>
|