use bootstrap and much nicer layout

This commit is contained in:
Uwe Steinmann 2016-04-21 14:22:12 +02:00
parent 083f0bb192
commit 78344f2c77

View File

@ -5,16 +5,19 @@ $settings = new Settings();
$rootDir = realpath ("..");
$settings->_rootDir = $rootDir.'/';
$theme = "blue";
$theme = "bootstrap";
include("../inc/inc.Language.php");
include("../inc/inc.ClassUI.php");
UI::htmlStartPage("INSTALL");
UI::globalBanner();
UI::contentStart();
UI::contentHeading("SeedDMS Installation...");
UI::contentContainerStart();
echo "<h2>".getMLText('settings_install_welcome_title')."</h2>";
echo "<div style=\"width: 600px;\">".getMLText('settings_install_welcome_text')."</div>";
echo '<p><a href="install.php">' . getMLText("settings_start_install") . '</a></p>';
UI::contentContainerEnd();
UI::contentEnd();
UI::htmlEndPage();
?>