. # # # #################################################################################### //form page 3... session_start(); require_once('inc/config.inc.php'); require_once('lang/' . $CONFIG['lang'] . '/index.php'); if ($CONFIG['auth_set'] != 'none') { if (!isset($_SESSION['username'])) { header('Location: index.php'); } } require_once('inc/header.inc.php'); if ($CONFIG['auth_set'] == 'ldap') { echo '
' . $LANG['logged_in'] . ' ' . $_SESSION['user_fn'] . ' ' . $_SESSION['user_sn'] . '. ' . $LANG['logout'] . '.
' . $LANG['p3_intro'] . '
' . "\n"; ?> ' . $LANG['p3_mail_sent'] . ''; echo '' . $LANG['p3_mail_opt1'] . '
'; } else { echo '' . $LANG['p3_mail_sent'] . '
'; echo '' . $LANG['p3_mail_opt2'] . '
'; } } //require_once('inc/config.inc.php'); require_once('inc/footer.inc.php'); ?>