.
*/
require_once("./include/include.php");
require_once("./include/SendMailPage.php");
page_header();
echoln("
Welcome at the '".$setup['EventSubject']."' applications website
");
echoln("On this website you can apply, edit your application, accept the members of your local (for boards) and find the list of accepted participants.");
echoln("Information about the event
");
echoln("This ".$setup['SetupEventType']." is organized by ".$setup['EventOrganizer']." in cooperation with ");
echoln("AEGEE-Europe. It will take place between ".$setup['EventDateStart']." and ");
echoln($setup['EventDateEnd'].". The application opens on ".$setup['EventDateAppStart']." and will close on ".$setup['EventDateAppEndVisa']." for visa applications and on ");
echoln($setup['EventDateAppEnd']." for non-visa applications. ");
if( $setup['SetupWSNumber']>0 ) echoln("You can change your workshop choices until ".$setup['EventDateWorkshopFix'].". ");
if( $setup['SetupBoardApproval']=="yes" ) echoln("Local boards have until ".$setup['EventDatePartTypeFix']." to approve the applications of their members and assign a participant type. ");
echoln("
If you have any questions about the event, please contact the application responsible of ".$setup['EventOrganizer'].": ");
echoln(SendMailPage::getLink("applresp", $setup['EventAppResponsible']).". ");
echoln("For technical questions about the application, please contact the webmaster: ");
echoln(SendMailPage::getLink("webmaster", $setup['WebmasterName']).".");
$queryBuilder = new QueryBuilder($GLOBALS['DB'], "info");
$queryBuilder->addField(array("id", "subject", "access", "dateadd", "datemodify"));
$queryBuilder->addWhereIn("access", array("public", "aegee"));
$queryBuilder->addOrderDesc("dateadd");
$queryBuilder->setLimit(3);
if( $GLOBALS['DB']->select($queryBuilder->toQuery()) > 0 ) {
echoln("Chair news (latest items)
");
echoln("");
echoln(" ");
echoln(" | | ");
echoln(" Subject | ");
echoln(" Date created | ");
echoln(" Date modified | ");
echoln("
");
$i = 1;
while( $row = $GLOBALS['DB']->fetchAssoc() ) {
$i++;
if( ($i%2)==1 ) echoln(" ");
else echoln("
");
if( $row['access']=="aegee" ) echoln("  | ");
elseif( $row['access']=="public" ) echoln("  | ");
echoln(" ".$row['subject']." | ");
echoln(" ".get_date($row['dateadd'])." | ");
echoln(" ".get_date($row['datemodify'])." | ");
echoln("
");
}
echoln("
");
}
echoln("Privacy statement
");
echoln("View the current Privacy statement (v".$setup['PrivacyVersion'].").");
echoln("How to ...
");
echoln("");
echoln(" - ... apply");
if( $setup['PromoteAnonymousApplication'] ) {
##############
echoln("
Click on 'My application' and then on the 'Apply now' link. You'll be asked to log in first. This will enable you to edit the application afterwards ");
echoln(" in case of changes. It will also give you the possibility to check if your local board has accepted your application, and which participant type and order ");
echoln(" they assigned you. Next to that, based on the data stored in your account we will try to pre-fill your application form.");
echoln("
If you are member of a Contact, you don't have an ".$ldap->getSystemName()." account yet. Click on 'For Contacts' in the menu, and then on the 'Apply now' link. You will ");
echoln(" not be able to change your application after applying.");
echoln("
Members of other bodies than Contacts that have forgotten their ".$ldap->getSystemName()." account, and are not able to ");
echoln(" recover it should use the 'Apply now' button on the 'For Contacts' page. ");
if( $setup['SetupBoardApproval']=="yes" ) {
##############
echoln(" - ... accept my members (for local boards)");
echoln("
Click on 'Boards'. You'll have to log in with your ".$ldap->getSystemName()." account. The access is based on the 'is boardmember' field in the ");
echoln(" Address Book, so make sure the Address Book ");
echoln(" is up-to-date. If you are a board member of more than one body, you have to select a body from the list, otherwise you'll see immediately the info for your body.");
echoln("
On this page you can also fill in the number of members your local has. When selecting visitors, this amount will be used. But, also the Treasurer of AEGEE-Europe ");
echoln(" as well as the Juridical Commission will use this number for your registration at the Agora, so make sure you'll fill in the right amount, otherwise you might have to ");
echoln(" pay for more members than you have.");
echoln("
If you are a board member of a Contact, click on 'For Contacts' and log in with the password you will receive within 24 hours after the first application from your ");
echoln(" Contact has been made. This password will be send to the e-mail address of your Contact as registered in the ");
echoln(" Address Book. ");
}
}else {
echoln("
Click on 'My application' and then on the 'Apply now' link. You'll be asked to log in first. This will enable you to edit the application afterwards ");
echoln(" in case of changes. It will also give you the possibility to check if your local board has accepted your application, and which participant type and order ");
echoln(" they assigned you. Next to that, based on the data stored in your account we will try to pre-fill your application form.");
echoln("
If you are member of a Contact, you don't have an ".$ldap->getSystemName()." account yet. Click on 'For Contacts' in the menu, and then on the 'Apply now' link. You will ");
echoln(" not be able to change your application after applying.");
echoln("
Members of other bodies than Contacts that have forgotten their ".$ldap->getSystemName()." account, and are not able to ");
echoln(" recover it should use the 'Apply now' button on the 'For Contacts' page.");
if( $setup['SetupBoardApproval']=="yes" ) {
echoln(" - ... accept my members (for local boards)");
echoln("
Click on 'Boards'. You'll have to log in with your ".$ldap->getSystemName()." account. The access is based on the 'is boardmember' field in the ");
echoln(" Address Book, so make sure the Address Book ");
echoln(" is up-to-date. If you are a board member of more than one body, you have to select a body from the list, otherwise you'll see immediately the info for your body.");
echoln("
On this page you can also fill in the number of members your local has. When selecting visitors, this amount will be used. But, also the Treasurer of AEGEE-Europe ");
echoln(" as well as the Juridical Commission will use this number for your registration at the Agora, so make sure you'll fill in the right amount, otherwise you might have to ");
echoln(" pay for more members than you have.");
echoln("
If you are a board member of a Contact, click on 'For Contacts' and log in with the password you will receive within 24 hours after the first application from your ");
echoln(" Contact has been made. This password will be send to the e-mail address of your Contact as registered in the ");
echoln(" Address Book. ");
}
}
echoln(" - ... see if I'm accepted
");
if( $setup['AuthSystem']!="None" ) echoln(" To see if you are accepted, you can click on 'My application'. On this page you can see the status of your application. Next to that you can 'edit your application'. ");
echoln(" Without logging in you can click on 'Participant list' to see if you are on the list of all accepted participants.");
echoln("
Please note: until you are accepted (meaning you are in the participants list) you are advised not to book any tickets, as only after the selection ");
echoln(" has been made you can be sure of your participation. ");
echoln("
");
page_footer();
?>