Show the create a new user backend link as button

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-30 11:47:26 +02:00
parent bad0d3cdc4
commit a17375f7fe
1 changed files with 12 additions and 7 deletions

View File

@ -1,11 +1,16 @@
<div class="controls">
<?= $tabs; ?>
<?= $tabs ?>
</div>
<div class="content" data-base-target="_next">
<a href="<?= $this->href('config/createuserbackend'); ?>">
<?= $this->icon('plus'); ?><?= $this->translate('Create A New User Backend'); ?>
</a>
<div id="authentication-reorder-form">
<?= $form; ?>
</div>
<?= $this->qlink(
$this->translate('Create A New User Backend') ,
'config/createuserbackend',
null,
array(
'class' => 'button action-link',
'icon' => 'plus',
'title' => $this->translate('Create a new user backend')
)
) ?>
<?= $form ?>
</div>