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:
Johannes Meyer 2014-10-09 16:12:36 +02:00
parent ca6eca6b67
commit d16fddd274
1 changed files with 6 additions and 0 deletions

View File

@ -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>