From 78344f2c77333e4fffdae448df666220abc92e5d Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Thu, 21 Apr 2016 14:22:12 +0200 Subject: [PATCH] use bootstrap and much nicer layout --- install/index.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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(); ?>