blob: e61db41afbc8c90b4f6046483933384f43a0dbf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
$title = "Index";
$header = "Index";
include "../../camp2011/includes/header.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";
include "../../camp2011/includes/login_eingabefeld.php";
echo "<h6>" . Get_Text("index_text4") . "</h6>";
include "../../camp2011/includes/footer.php";
?>
|