summaryrefslogtreecommitdiff
path: root/www-ssl/index.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2011-06-01 14:30:29 +0200
committerPhilip Häusler <msquare@notrademark.de>2011-06-01 14:30:29 +0200
commit6ebee2c46ba11ce42e85b830189346b13514d497 (patch)
treee76538b0f667f29f859585af7998288cfcbd26e4 /www-ssl/index.php
parent550467697f8b3ae0b5d15d1d3a2bc3f83b003ff8 (diff)
bootstrapping
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";
?>