From b31e2485459fe724d673ded7f84a78076107c78a Mon Sep 17 00:00:00 2001 From: Karl Burkhart Date: Tue, 19 Apr 2011 12:56:44 +0000 Subject: [PATCH] --- cis/public/incoming/incoming.php | 30 ++++++ cis/public/incoming/registration.php | 133 +++++++++++++++++++++++++++ 2 files changed, 163 insertions(+) create mode 100644 cis/public/incoming/incoming.php create mode 100644 cis/public/incoming/registration.php diff --git a/cis/public/incoming/incoming.php b/cis/public/incoming/incoming.php new file mode 100644 index 000000000..779382027 --- /dev/null +++ b/cis/public/incoming/incoming.php @@ -0,0 +1,30 @@ +, + * Andreas Oesterreicher and + * Karl Burkhart . + */ + +?> + + + + Incomming-Verwaltung + + + \ No newline at end of file diff --git a/cis/public/incoming/registration.php b/cis/public/incoming/registration.php new file mode 100644 index 000000000..61dea56c8 --- /dev/null +++ b/cis/public/incoming/registration.php @@ -0,0 +1,133 @@ +, + * Andreas Oesterreicher and + * Karl Burkhart . + */ + +require_once '../../../config/cis.config.inc.php'; +require_once '../../../include/person.class.php'; +require_once '../../../include/nation.class.php'; +require_once '../../../include/functions.inc.php'; +require_once '../../../include/phrasen.class.php'; + +header('content-type: text/html; charset=utf-8'); + +if(isset($_GET['lang'])) + setSprache($_GET['lang']); + + + +$nation = new nation(); +$nation->getAll($ohnesperre = true); + +$sprache = getSprache(); +$p=new phrasen($sprache); + +?> + + + + Incoming-Registration + + + + + + + + +
Login > Registration t("global/sprache")." "; + echo ''.$p->t("global/englisch").' | + '.$p->t("global/deutsch").'
';?>
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
t('global/titel');?> Pre
t('global/vorname');?>
t('global/nachname');?>
t('global/titel');?> Post
t('global/strasse');?>
t('global/plz');?>
t('global/ort');?>
Nation
E-Mail
t('global/anmerkung');?>
+
+ + + + \ No newline at end of file