mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-24 06:14:25 +02:00
Add a next button double to the admin account page as well
Forgot to adjust this page as it's using a dedicated view script. refs #7163
This commit is contained in:
parent
ca6eca6b67
commit
d16fddd274
@ -61,6 +61,12 @@ $showRadioBoxes = strpos(strtolower(get_class($radioElem)), 'radio') !== false;
|
|||||||
<?= $form->getElement($form->getTokenElementName()); ?>
|
<?= $form->getElement($form->getTokenElementName()); ?>
|
||||||
<?= $form->getElement($form->getUidElementName()); ?>
|
<?= $form->getElement($form->getUidElementName()); ?>
|
||||||
<div class="buttons">
|
<div class="buttons">
|
||||||
|
<?php
|
||||||
|
$btn = clone $form->getElement(Wizard::BTN_NEXT);
|
||||||
|
$btn->setAttrib('class', 'double');
|
||||||
|
$btn->setAttrib('tabindex', -1);
|
||||||
|
echo $btn;
|
||||||
|
?>
|
||||||
<?= $form->getElement(Wizard::BTN_PREV); ?>
|
<?= $form->getElement(Wizard::BTN_PREV); ?>
|
||||||
<?= $form->getElement(Wizard::BTN_NEXT); ?>
|
<?= $form->getElement(Wizard::BTN_NEXT); ?>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user