diff --git a/install/index.php b/install/index.php index 57fa4afc9..d796ee502 100644 --- a/install/index.php +++ b/install/index.php @@ -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 "

".getMLText('settings_install_welcome_title')."

"; echo "
".getMLText('settings_install_welcome_text')."
"; echo '

' . getMLText("settings_start_install") . '

'; UI::contentContainerEnd(); +UI::contentEnd(); UI::htmlEndPage(); ?>