aboutsummaryrefslogtreecommitdiff
path: root/www/print_index.php
diff options
context:
space:
mode:
authorroot2014-04-14 08:35:13 +0200
committerroot2014-04-14 08:35:13 +0200
commit12734da8826299ffd24c0a15f6dbf205892d7221 (patch)
tree3b894dd30e332df23a564ce44e42ce164c8abd78 /www/print_index.php
parent7b9d516cd3bcdb8eaa5f1eb533d71010061c681b (diff)
downloadjungegemeinde-12734da8826299ffd24c0a15f6dbf205892d7221.tar.gz
Pushed to v3
Diffstat (limited to 'www/print_index.php')
-rw-r--r--www/print_index.php48
1 files changed, 48 insertions, 0 deletions
diff --git a/www/print_index.php b/www/print_index.php
new file mode 100644
index 0000000..9a8e96d
--- /dev/null
+++ b/www/print_index.php
@@ -0,0 +1,48 @@
+<?php
+
+/* Copyright Maximilian Möhring, 2013
+Licensed under the GPL. Read LICENSE for more Information.*/
+
+function print_index(){
+ include("static/header.php");
+
+ if($_SESSION["username"] == "jg-adlershof"){
+ $name = "Gast";
+ } else {
+ $name = $_SESSION["username"];
+ }
+
+ echo "
+<div id='content_container' align='center'>
+ <br>
+ <div class='kleineschrift'>
+ <div class='ueberschrift'><p>JUNGE GEMEINDE ADLERSHOF</p>
+ </div>
+ </div>
+<br>
+<div class='kleineschrift'>
+<div style='width:800px;' class='katze' id='behaelter' align='center'>
+ Hallo ".$name.".<br> Willkommen auf der Webpage für die Junge Gemeinde in Adlershof. Für einen persönlichen Zugang, und um alle Features zu nutzen, registriere dich doch <a
+style='text-decoration:underline;color:blue;' href='/register'>hier</a>. Wenn du Probleme bei der Navigation hast, dann schau unter <a style='text-decoration: underline;color:blue;'
+href='/help'>Hilfe</a> nach. <br>
+ Für Anregungen und Kritik bin ich immer zu haben. Schick mir einfach ne Mail oder sags mir nächsten Donnerstag. ;)
+ <br><bR>
+ PS: Du kannst dich nach einer Registrierung auch mit deinem Username einloggen.
+</div>
+</div>
+
+<br><br>
+<div class='katze' align='center'><pre>
+ ,/| _.--''^``-...___.._.,;
+ /, \'. _-' ,--,,,--'''
+ { \ `_-'' ' /}
+ `;;' ; ; ;
+ ._.--'' ._,,, _..' .;.'
+ (,_....----''' (,..--''
+</pre></div>
+
+
+</div>
+</div>
+ ";
+}