mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +00:00
17 lines
538 B
PHP
17 lines
538 B
PHP
<?php
|
|
include("../inc/inc.Settings.php");
|
|
include("../inc/inc.Language.php");
|
|
include("../inc/inc.ClassUI.php");
|
|
|
|
$settings = new Settings();
|
|
|
|
UI::htmlStartPage("INSTALL");
|
|
UI::contentHeading("letoDMS 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::htmlEndPage();
|
|
?>
|