From 9f5bbef729046ee2b21ab983d4537b509a4b6f8b Mon Sep 17 00:00:00 2001 From: Jan Vales Date: Wed, 15 Jul 2015 05:12:31 +0200 Subject: [PATCH] Live-Chat-text, split funcs and html_funcs, --- funcs.php | 37 +------------------------------------ html_funcs.php | 47 +++++++++++++++++++++++++++++++++++++++++++++++ index.php | 13 ++++++++++++- style.css | 6 ++++++ 4 files changed, 66 insertions(+), 37 deletions(-) create mode 100644 html_funcs.php diff --git a/funcs.php b/funcs.php index e3a0cb4..875c408 100644 --- a/funcs.php +++ b/funcs.php @@ -7,6 +7,7 @@ require_once('./settings.php'); require_once('./db_funcs.php'); +require_once('./html_funcs.php'); function login(){ // if(!isset($_SERVER['HTTPS'])){ @@ -92,39 +93,3 @@ function get_person($id){ return db_get_person($id); } -function html_top($title = ""){ - return << - - - -$title - - - - -EOF; -} - -function html_bottom(){ - return << - -EOF; -} - -function html_linkbox($current = "") { - $items = array( - 'index' => "Home", - 'list' => "Anmeldungen", - 'calendar' => "Kalender", - 'stats' => "Stats" - ); - $out = ''; - return $out; -} diff --git a/html_funcs.php b/html_funcs.php new file mode 100644 index 0000000..188d6ec --- /dev/null +++ b/html_funcs.php @@ -0,0 +1,47 @@ + +*/ + +function html_top($title = ""){ + return << + + + +$title + + + + +EOF; +} + +function html_bottom(){ + return << + +

Live-Support-WebChat (Ist ein WebIRC zu #w2c auf irc.fsinf.at) +
Auch möglich: eMail an someone@fsinf.at

+ + +EOF; +} + +function html_linkbox($current = "") { + $items = array( + 'index' => "Home", + 'list' => "Anmeldungen", + 'calendar' => "Kalender", + 'stats' => "Stats" + ); + $out = ''; + return $out; +} diff --git a/index.php b/index.php index 05c9961..b814323 100644 --- a/index.php +++ b/index.php @@ -2,5 +2,16 @@ require_once('./funcs.php'); echo html_top("Anmeldesystem"); echo html_linkbox("index"); -echo html_bottom(); ?> + +

Benutzungsanleitung

+

TODO

+ +

Live-Support

+

Diese Software ist innerhalb von ca 20 Stunden entstanden, was für einen ordentlichen SW-Entwicklungsprozess viel zu wenig ist, weshalb sich trotz Tests auch +sicherlich Fehler eingeschlichen haben, die wir nicht entdeckt haben.
+Wenn Du Fragen hast, die aus der Benutzungsanleitung nicht klar werden, oder Du glaubst, einen Fehler in der Software entdeckt zu haben, nutze bitte den +Live-Support Link unten auf jeder Seite, um mit dem Entwickler_innen-Team in Kontakt zu treten.

+ +