feat: Support password setting into installation step

This commit is contained in:
Martin Ambrus
2017-10-22 10:42:05 +02:00
parent 90db6539c1
commit 4d6b18de4c
5 changed files with 77 additions and 12 deletions
+7 -4
View File
@@ -74,7 +74,7 @@ function proceed() {
<div id="content" class="login">
<?php
IHG_Progressbar::draw_css();
$bar = new IHG_Progressbar(7, 'Step %d from %d ');
$bar = new IHG_Progressbar(8, 'Step %d from %d ');
$bar->draw();
for($i = 0; $i < ($_GET['s']+1); $i++) {
$bar->tick();
@@ -106,12 +106,15 @@ function proceed() {
include("templates/field.tpl");
break;
case 4:
include("templates/multihunter.tpl");
break;
include("templates/multihunter.tpl");
break;
case 5:
include("templates/oasis.tpl");
include("templates/support.tpl");
break;
case 6:
include("templates/oasis.tpl");
break;
case 7:
include("templates/end.tpl");
break;
}