summaryrefslogtreecommitdiff
path: root/www-ssl/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'www-ssl/index.php')
-rw-r--r--www-ssl/index.php20
1 files changed, 11 insertions, 9 deletions
diff --git a/www-ssl/index.php b/www-ssl/index.php
index 4a34643c..cdec1559 100644
--- a/www-ssl/index.php
+++ b/www-ssl/index.php
@@ -1,15 +1,17 @@
<?php
- $title = "Start";
- $header = "Start";
- include "../includes/header.php";
+require_once ('bootstrap.php');
- echo "<p>" . Get_Text("index_text1") . "</p>\n";
- echo "<p>" . Get_Text("index_text2") . "</p>\n";
- echo "<p>" . Get_Text("index_text3") . "</p>\n";
+$title = "Start";
+$header = "Start";
+include "includes/header.php";
- include "../includes/login_eingabefeld.php";
+echo "<p>" . Get_Text("index_text1") . "</p>\n";
+echo "<p>" . Get_Text("index_text2") . "</p>\n";
+echo "<p>" . Get_Text("index_text3") . "</p>\n";
- echo "<h6>" . Get_Text("index_text4") . "</h6>";
+include "includes/login_eingabefeld.php";
- include "../includes/footer.php";
+echo "<h6>" . Get_Text("index_text4") . "</h6>";
+
+include "includes/footer.php";
?>