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->getUidElementName()); ?>
|
||||
<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_NEXT); ?>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue