Skip to content

Commit

Permalink
Add a next button double to the admin account page as well
Browse files Browse the repository at this point in the history
Forgot to adjust this page as it's using a dedicated view script.

refs #7163
  • Loading branch information
Johannes Meyer committed Oct 9, 2014
1 parent ca6eca6 commit d16fddd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions application/views/scripts/form/setup-admin-account.phtml
Expand Up @@ -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>
Expand Down

0 comments on commit d16fddd

Please sign in to comment.