1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/limesurvey_ynh.git synced 2024-09-03 19:36:32 +02:00
limesurvey_ynh/sources/application/views/installer/dbsettings_view.php

31 lines
1.3 KiB
PHP
Raw Normal View History

<div class="row">
<div class="span3">
<?php $this->renderPartial('/installer/sidebar_view', compact('progressValue', 'classesForStep', 'clang')); ?>
</div>
<div class="span9">
<h2><?php echo $title; ?></h2>
<p><?php echo $descp; ?></p>
<h3><?php $clang->eT('Database creation'); ?></h3>
<?php if (isset($adminoutputText)) echo $adminoutputText; ?>
<div class="row">
<div class="span3" >
<input class="btn" type="button" value="<?php $clang->eT('Previous'); ?>" onclick="javascript: window.open('<?php echo $this->createUrl("installer/database"); ?>', '_top')" />
</div>
<div class="span3" style="text-align: center;">
</div>
<div class="span3" style="text-align: right;">
<?php
if (isset($next))
{
echo CHtml::form(array($next['action']), 'post');
echo CHtml::submitButton($clang->gT($next['label']), array(
'name' => $next['name'],
'class' => 'btn'
));
echo CHtml::endForm();
}
?>
</div>