update engelanmeldung
upadte menue strucktur git-svn-id: svn://svn.cccv.de/engel-system@25 29ba0400-6e00-0410-a75a-ca02368028f8main
parent
9dbe3926e2
commit
f0f10bc349
@ -1,110 +0,0 @@
|
||||
<?PHP
|
||||
|
||||
$title = "MakeNewUser";
|
||||
$header = "Make New User";
|
||||
include ("./inc/header.php");
|
||||
include ("./inc/db.php");
|
||||
include ("./inc/crypt.php");
|
||||
|
||||
//User Anzahl
|
||||
$SQL3 = "SELECT * FROM `User`";
|
||||
$Erg3 = mysql_query($SQL3, $con);
|
||||
echo "\n<!-- ". mysql_num_rows($Erg3). " //-->\n\n";
|
||||
|
||||
if( !isset($_POST["action"]) )
|
||||
$_POST["action"]="new";
|
||||
|
||||
if( $_POST["action"]=="newsave")
|
||||
{
|
||||
$eNick = trim($_POST["eNick"]);
|
||||
if( strlen($_POST["eNick"]) < 2 )
|
||||
{
|
||||
$error= "<h3>error: nick '".$_POST["eNick"]."' is to short (min. 2 characters)</h3>";
|
||||
}
|
||||
elseif( strlen($_POST["eemail"]) <= 7 ||
|
||||
strstr($_POST["eemail"], "@") == FALSE ||
|
||||
strstr($_POST["eemail"], ".") == FALSE )
|
||||
{
|
||||
$error= "<h3>error: e-mail address is not correct</h3>";
|
||||
}
|
||||
elseif( $_POST["ePasswort"] != $_POST["ePasswort2"] )
|
||||
{
|
||||
$error= "error: passswords are not identical";
|
||||
}
|
||||
elseif( strlen($_POST["ePasswort"]) < 6 )
|
||||
{
|
||||
$error= "error: password is to short (min. 6 characters)";
|
||||
}
|
||||
else
|
||||
{
|
||||
$_POST["ePasswort"] = PassCrypt($_POST["ePasswort"]);
|
||||
$SQL = "INSERT INTO `User` (`Nick`, `Name`, `Vorname`, `Alter`, `Telefon`, `DECT`, `Handy`, ".
|
||||
"`email`, `Size`, `Passwort`) ".
|
||||
"VALUES ('". $_POST["eNick"]. "', '". $_POST["eName"]. "', '". $_POST["eVorname"].
|
||||
"', '". $_POST["eAlter"]. "', '". $_POST["eTelefon"]. "', '". $_POST["eDECT"].
|
||||
"', '". $_POST["eHandy"]. "', '". $_POST["eemail"]. "', '". $_POST["eSize"].
|
||||
"', '". $_POST["ePasswort"]. "');";
|
||||
$Erg = mysql_query($SQL, $con);
|
||||
if ($Erg != 1)
|
||||
echo "error: can't save personal informations...<br><h6>(error: ".mysql_error($con).")</h6>";
|
||||
else
|
||||
{
|
||||
echo "personal informations was saved...<br>";
|
||||
|
||||
$SQL2 = "SELECT UID FROM `User` WHERE Nick='". $_POST["eNick"]. "';";
|
||||
$Erg2 = mysql_query($SQL2, $con);
|
||||
$Data = mysql_fetch_array($Erg2);
|
||||
|
||||
$SQL3 = "INSERT INTO `UserCVS` (`UID`) VALUES (". $Data["UID"]. ");";
|
||||
$Erg3 = mysql_query($SQL3, $con);
|
||||
if ($Erg3 != 1)
|
||||
{
|
||||
echo "error: can't save userright... <br><h6>(".mysql_error($con).")</h6>";
|
||||
}
|
||||
else
|
||||
{
|
||||
echo "userright was saved...<br>";
|
||||
echo "<br><br> Your acount was sucsessfull creat, hafe al lot of fun.";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if( $_POST["action"] == "new" || isset($error))
|
||||
{
|
||||
if( !isset($error) )
|
||||
echo "If you wont to be an angel please insert your personal information into this form: <br>";
|
||||
else
|
||||
echo $error;
|
||||
echo "\n\n<form action=\"https://". $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']. "\" method=\"POST\">\n";
|
||||
echo "<table>\n";
|
||||
echo " <tr><td>nick*</td><td><input type=\"text\" size=\"40\" name=\"eNick\" value=\"".
|
||||
$_POST["eNick"]. "\"></td></tr>\n";
|
||||
echo " <tr><td>last name</td><td><input type=\"text\" size=\"40\" name=\"eName\" value=\"".
|
||||
$_POST["eName"]. "\"></td></tr>\n";
|
||||
echo " <tr><td>first name</td><td><input type=\"text\" size=\"40\" name=\"eVorname\" value=\"".
|
||||
$_POST["eVorname"]. "\"></td></tr>\n";
|
||||
echo " <tr><td>age</td><td><input type=\"text\" size=\"40\" name=\"eAlter\" value=\"".
|
||||
$_POST["eAlter"]. "\"></td></tr>\n";
|
||||
echo " <tr><td>phone</td><td><input type=\"text\" size=\"40\" name=\"eTelefon\" value=\"".
|
||||
$_POST["eTelefon"]. "\"></td></tr>\n";
|
||||
echo " <tr><td>DECT on congress</td><td><input type=\"text\" size=\"40\" name=\"eDECT\" value=\"".
|
||||
$_POST["eDECT"]. "\"></td></tr>\n";
|
||||
echo " <tr><td>mobile</td><td><input type=\"text\" size=\"40\" name=\"eHandy\" value=\"".
|
||||
$_POST["eHandy"]. "\"></td></tr>\n";
|
||||
echo " <tr><td>e-mail*</td><td><input type=\"text\" size=\"40\" name=\"eemail\" value=\"".
|
||||
$_POST["eemail"]. "\"></td></tr>\n";
|
||||
echo " <tr><td>T-Shirt size*</td><td><input type=\"text\" size=\"40\" name=\"eSize\" value=\"".
|
||||
$_POST["eSize"]. "\"></td></tr>\n";
|
||||
echo " <tr><td>password*</td><td><input type=\"password\" size=\"40\" name=\"ePasswort\"></td></tr>\n";
|
||||
echo " <tr><td>password Confirm*</td><td><input type=\"password\" size=\"40\" name=\"ePasswort2\"></td></tr>\n";
|
||||
echo "</table>\n";
|
||||
echo "<input type=\"hidden\" name=\"action\" value=\"newsave\">\n";
|
||||
echo "<input type=\"submit\" value=\"register me as an engel\">\n";
|
||||
echo "</form>";
|
||||
echo "\n\n\n\t* entry required!\n";
|
||||
}
|
||||
|
||||
include ("./inc/footer.php");
|
||||
?>
|
||||
|
@ -0,0 +1,129 @@
|
||||
<?PHP
|
||||
|
||||
$title = "Anmeldung zum Chaos-Engel";
|
||||
$header = "Anmeldung zum Chaos-Engel";
|
||||
|
||||
include ("./inc/header.php");
|
||||
include ("./inc/db.php");
|
||||
include ("./inc/crypt.php");
|
||||
|
||||
if( $_POST)
|
||||
{
|
||||
$eNick = trim($_POST["Nick"]);
|
||||
if( strlen($_POST["Nick"]) < 2 ) {
|
||||
$error= "Fehler: Nickname '".$_POST["eNick"]."' ist zu kurz gewählt (Mindestens 2 Zeichen).";
|
||||
} elseif( strlen($_POST["email"]) <= 6 && strstr($_POST["email"], "@") == FALSE && strstr($_POST["email"], ".") == FALSE ) {
|
||||
$error= "Fehler: E-Mail-Adresse ist nicht gültig.";
|
||||
} elseif( $_POST["Passwort"] != $_POST["Passwort2"] ) {
|
||||
$error= "Fehler: Passwörter sind nicht identisch.";
|
||||
} elseif( strlen($_POST["Passwort"]) < 6 ) {
|
||||
$error= "Fehler: Passwort ist zu kurz (Mindestens 6 Zeichen)";
|
||||
} else {
|
||||
$_POST["Passwort"] = PassCrypt($_POST["Passwort"]);
|
||||
unset($_POST["Passwort2"]);
|
||||
|
||||
function mysqlinsert($table, $con, $array){
|
||||
foreach($array as $key => $value){
|
||||
|
||||
$value = strtr($value, get_html_translation_table(HTML_ENTITIES));
|
||||
$keys .= $key.", ";
|
||||
$values .= "'".$value."', ";
|
||||
}
|
||||
$keys = substr($keys, 0, -2);
|
||||
$values = substr($values, 0, -2);
|
||||
$sql = "INSERT INTO $table (".$keys.") VALUES (".$values.")";
|
||||
mysql_query($sql, $con);
|
||||
}
|
||||
|
||||
mysqlinsert('User', $con, $_POST);
|
||||
$Erg = mysql_affected_rows();
|
||||
|
||||
if ($Erg != 1) {
|
||||
echo "Fehler: Kann die eingegebenen Daten nicht sichern?!?<br>";
|
||||
echo "\n<h6>(Fehler: ".mysql_error($con).")</h6>";
|
||||
} else {
|
||||
echo "<p class=\"important\">Die Anmeldung war erfolgreich. Vielen Dank für deine Anmeldung.</p><p></p>\n<br><br>";
|
||||
|
||||
|
||||
$SQL2 = "SELECT UID FROM `User` WHERE Nick='". $_POST["Nick"]. "';";
|
||||
$Erg2 = mysql_query($SQL2, $con);
|
||||
$Data = mysql_fetch_array($Erg2);
|
||||
}
|
||||
}
|
||||
if( !isset($error) ){
|
||||
echo "Wenn du dich zum Chaos-Engel anmelden möchtest, fülle bitte folgendes Formular aus: <br>";
|
||||
} else {
|
||||
echo "<p class=\"warning\">\n$error\n</p>";
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
//init vars
|
||||
$_POST["Nick"] = "";
|
||||
$_POST["Name"] = "";
|
||||
$_POST["Vorname"] = "";
|
||||
$_POST["Alta"] = "";
|
||||
$_POST["Telefon"] = "";
|
||||
$_POST["DECT"] = "";
|
||||
$_POST["Handy"] = "";
|
||||
$_POST["email"] = "";
|
||||
$_POST["Size"] = "";
|
||||
$_POST["Art"] = "";
|
||||
}
|
||||
?>
|
||||
|
||||
<h1>Anmeldung zum Chaos-Engel</h1>
|
||||
|
||||
Mit dieser Maske meldet Ihr euch im Engelsystem an. Durch das Engelsystem findet auf dem Congress die Aufgabenverteilung der Engel statt.
|
||||
|
||||
|
||||
<form action="https://<?php echo $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];?>" method="post">
|
||||
<table>
|
||||
<tr><td>Nickname*</td><td><input type="text" size="40" name="Nick" value="<?php echo $_POST["Nick"]; ?>"/></td></tr>
|
||||
<tr><td>Nachname</td><td><input type="text" size="40" name="Name" value="<?php echo $_POST["Name"]; ?>"/></td></tr>
|
||||
<tr><td>Vorname</td><td><input type="text" size="40" name="Vorname" value="<?php echo $_POST["Vorname"]; ?>"/></td></tr>
|
||||
<tr><td>Alter</td><td><input type="text" size="40" name="Alta" value="<?php echo $_POST["Alta"]; ?>"/></td></tr>
|
||||
<tr><td>Telefon</td><td><input type="text" size="40" name="Telefon" value="<?php echo $_POST["Telefon"]; ?>"/></td></tr>
|
||||
<tr><td>DECT</td><td><input type="text" size="40" name="DECT" value="<?php echo $_POST["DECT"]; ?>"/></td><td><!--a href="https://21c3.ccc.de/wiki/index.php/POC"><img src="./pic/external.png" alt="external: " /> DECT</a--></td></tr>
|
||||
<tr><td>Handy</td><td><input type="text" size="40" name="Handy" value="<?php echo $_POST["Handy"]; ?>"/></td></tr>
|
||||
<tr><td>E-Mail*</td><td><input type="text" size="40" name="email" value="<?php echo $_POST["email"]; ?>"/></td></tr>
|
||||
<tr><td>T-Shirt Grösse*</td><td align="left">
|
||||
<select name="Size">
|
||||
<option value="S"<?php if ($_POST["Size"]=="S") {echo " selected";}; ?>>S</option>
|
||||
<option value="M"<?php if ($_POST["Size"]=="M") {echo " selected";}; ?>>M</option>
|
||||
<option value="L"<?php if ($_POST["Size"]=="L") {echo " selected";}; ?>>L</option>
|
||||
<option value="XL"<?php if ($_POST["Size"]=="XL") {echo " selected";}; ?>>XL</option>
|
||||
<option value="XXL"<?php if ($_POST["Size"]=="XXL") {echo " selected";}; ?>>XXL</option>
|
||||
</select>
|
||||
</td></tr>
|
||||
<tr><td>Engelart</td><td align="left">
|
||||
<select name="Art">
|
||||
<option value="Konferenz"<?php if ($_POST["Art"]=="Konferenz") {echo " selected";}; ?>>Konferenz</option>
|
||||
<option value="Dokumentation"<?php if ($_POST["Art"]=="Dokumentation") {echo " selected";}; ?>>Dokumentation</option>
|
||||
<option value="Eingang"<?php if ($_POST["Art"]=="Eingang") {echo " selected";}; ?>>Eingang</option>
|
||||
<option value="Schutzengel"<?php if ($_POST["Art"]=="Schutzengel") {echo " selected";}; ?>>Schutzengel</option>
|
||||
<option value="Netzengel"<?php if ($_POST["Art"]=="Netzengel") {echo " selected";}; ?>>Netzengel</option>
|
||||
<option value="Rettung"<?php if ($_POST["Art"]=="Rettung") {echo " selected";}; ?>>Rettung</option>
|
||||
<option value="Verpflegung"<?php if ($_POST["Art"]=="Verpflegung") {echo " selected";}; ?>>Verpflegung</option>
|
||||
<option value="egal"<?php if ($_POST["Art"]=="egal") {echo " selected";}; ?>>Egal-Engel</option>
|
||||
</select>
|
||||
</td><td><!--a href="https://www.ccc.de/congress/2004/engel.de.html#d5e23"><img src="./pic/external.png" alt="external: " /> Congress 21C3</a--></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Habt ihr schon einmal am<br />
|
||||
Congress mitgeholfen? <br />
|
||||
Wenn ja, in welchem/<br />
|
||||
welchen Aufgabengebiet(en)?</td>
|
||||
<td><textarea rows="5" cols="40" name="qualifikationen"></textarea></td>
|
||||
</tr>
|
||||
<tr><td>Passwort*</td><td><input type="password" size="40" name="Passwort"/></td></tr>
|
||||
<tr><td>Passwort Bestätigung*</td><td><input type="password" size="40" name="Passwort2"/></td></tr>
|
||||
<tr><td> </td><td><input type="submit" value="Anmelden..."/></td></tr>
|
||||
|
||||
</table>
|
||||
</form>
|
||||
* Dieser Eintrag ist eine Pflichtangabe.
|
||||
<?php
|
||||
include ("./inc/footer.php");
|
||||
?>
|
||||
|
@ -0,0 +1,125 @@
|
||||
<?PHP
|
||||
|
||||
$title = "Chaos-Angel Registration";
|
||||
$header = "Chaos-Angel Registration";
|
||||
include ("./inc/header.php");
|
||||
include ("./inc/db.php");
|
||||
include ("./inc/crypt.php");
|
||||
|
||||
if( $_POST)
|
||||
{
|
||||
$eNick = trim($_POST["Nick"]);
|
||||
if( strlen($_POST["Nick"]) < 2 ) {
|
||||
$error= "error: your nick '".$_POST["Nick"]."' is to short (min. 2 characters)";
|
||||
} elseif( strlen($_POST["email"]) <= 6 && strstr($_POST["email"], "@") == FALSE && strstr($_POST["email"], ".") == FALSE ) {
|
||||
$error= "error: e-mail address is not correct";
|
||||
} elseif( $_POST["Passwort"] != $_POST["Passwort2"] ) {
|
||||
$error= "error: your passswords are not identical";
|
||||
} elseif( strlen($_POST["Passwort"]) < 6 ) {
|
||||
$error= "error: your password is to short (min. 6 characters)";
|
||||
} else {
|
||||
$_POST["Passwort"] = PassCrypt($_POST["Passwort"]);
|
||||
unset($_POST["Passwort2"]);
|
||||
|
||||
function mysqlinsert($table, $con, $array){
|
||||
foreach($array as $key => $value){
|
||||
|
||||
$value = strtr($value, get_html_translation_table(HTML_ENTITIES));
|
||||
$keys .= $key.", ";
|
||||
$values .= "'".$value."', ";
|
||||
}
|
||||
$keys = substr($keys, 0, -2);
|
||||
$values = substr($values, 0, -2);
|
||||
$sql = "INSERT INTO $table (".$keys.") VALUES (".$values.")";
|
||||
mysql_query($sql, $con);
|
||||
}
|
||||
|
||||
mysqlinsert('User', $con, $_POST);
|
||||
$Erg = mysql_affected_rows();
|
||||
|
||||
if ($Erg != 1) {
|
||||
echo "error: can't save your data...<br><h6>(error: ".mysql_error($con).")</h6>";
|
||||
} else {
|
||||
echo "<p class=\"important\">transmitted. Thank you for your participation..</p><p></p>\n<br><br>";
|
||||
|
||||
$SQL2 = "SELECT UID FROM `User` WHERE Nick='". $_POST["Nick"]. "';";
|
||||
$Erg2 = mysql_query($SQL2, $con);
|
||||
$Data = mysql_fetch_array($Erg2);
|
||||
}
|
||||
}
|
||||
if( !isset($error) ){
|
||||
echo "If you would like to be an chaos angel please insert following details into this form: <br>";
|
||||
} else {
|
||||
echo "<p class=\"warning\">\n$error\n</p>";
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
//init vars
|
||||
$_POST["Nick"] = "";
|
||||
$_POST["Name"] = "";
|
||||
$_POST["Vorname"] = "";
|
||||
$_POST["Alta"] = "";
|
||||
$_POST["Telefon"] = "";
|
||||
$_POST["DECT"] = "";
|
||||
$_POST["Handy"] = "";
|
||||
$_POST["email"] = "";
|
||||
$_POST["Size"] = "";
|
||||
$_POST["Art"] = "";
|
||||
}
|
||||
?>
|
||||
<h1>Chaos-Angel registration</h1>
|
||||
|
||||
By completing this form you're registering as a Chaos-Angel. This script will create you an account in the congress angel task system.
|
||||
|
||||
<form action="https://<?php echo $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];?>" method="post">
|
||||
<table>
|
||||
<tr><td>nick*</td><td><input type="text" size="40" name="Nick" value="<?php echo $_POST["Nick"]; ?>"/></td></tr>
|
||||
<tr><td>last name</td><td><input type="text" size="40" name="Name" value="<?php echo $_POST["Name"]; ?>"/></td></tr>
|
||||
<tr><td>first name</td><td><input type="text" size="40" name="Vorname" value="<?php echo $_POST["Vorname"]; ?>"/></td></tr>
|
||||
<tr><td>age</td><td><input type="text" size="40" name="Alta" value="<?php echo $_POST["Alta"]; ?>"/></td></tr>
|
||||
<tr><td>phone</td><td><input type="text" size="40" name="Telefon" value="<?php echo $_POST["Telefon"]; ?>"/></td></tr>
|
||||
<tr><td>DECT</td><td><input type="text" size="40" name="DECT" value="<?php echo $_POST["DECT"]; ?>"/></td><td><!--a href="https://21c3.ccc.de/wiki/index.php/POC"><img src="./pic/external.png" alt="external: " /> DECT</a--></td></tr>
|
||||
<tr><td>mobile</td><td><input type="text" size="40" name="Handy" value="<?php echo $_POST["Handy"]; ?>"/></td></tr>
|
||||
<tr><td>e-mail*</td><td><input type="text" size="40" name="email" value="<?php echo $_POST["email"]; ?>"/></td></tr>
|
||||
<tr><td>shirt size*</td><td align="left">
|
||||
<select name="Size">
|
||||
<option value="S"<?php if ($_POST["Size"]=="S") {echo " selected";}; ?>>S</option>
|
||||
<option value="M"<?php if ($_POST["Size"]=="M") {echo " selected";}; ?>>M</option>
|
||||
<option value="L"<?php if ($_POST["Size"]=="L") {echo " selected";}; ?>>L</option>
|
||||
<option value="XL"<?php if ($_POST["Size"]=="XL") {echo " selected";}; ?>>XL</option>
|
||||
<option value="XXL"<?php if ($_POST["Size"]=="XXL") {echo " selected";}; ?>>XXL</option>
|
||||
</select>
|
||||
</td></tr>
|
||||
<tr><td>type of angel</td><td align="left">
|
||||
<select name="Art">
|
||||
<option value="Konferenz"<?php if ($_POST["Art"]=="Konferenz") {echo " selected";}; ?>>Conference</option>
|
||||
<option value="Dokumentation"<?php if ($_POST["Art"]=="Dokumentation") {echo " selected";}; ?>>Documentation</option>
|
||||
<option value="Eingang"<?php if ($_POST["Art"]=="Eingang") {echo " selected";}; ?>>Entrance</option>
|
||||
<option value="Schutzengel"<?php if ($_POST["Art"]=="Schutzengel") {echo " selected";}; ?>>Guardian Angel</option>
|
||||
<option value="Netzengel"<?php if ($_POST["Art"]=="Netzengel") {echo " selected";}; ?>>Netangels</option>
|
||||
<option value="Rettung"<?php if ($_POST["Art"]=="Rettung") {echo " selected";}; ?>>Rescue</option>
|
||||
<option value="Verpflegung"<?php if ($_POST["Art"]=="Verpflegung") {echo " selected";}; ?>>Catering</option>
|
||||
<option value="egal"<?php if ($_POST["Art"]=="egal") {echo " selected";}; ?>>any kind</option>
|
||||
</select>
|
||||
</td><td><!--a href="https://www.ccc.de/congress/2005/engel.en.html#d5e75"><img src="./pic/external.png" alt="external: " /> Congress 21C3</a--></td></tr>
|
||||
<tr>
|
||||
<td>
|
||||
Did you help at former <br />
|
||||
congresses and which tasks <br />
|
||||
have you performed then? <br />
|
||||
</td>
|
||||
<td><textarea rows="5" cols="40" name="qualifikationen"></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td>password*</td><td><input type="password" size="40" name="Passwort"/></td></tr>
|
||||
<tr><td>password confirm*</td><td><input type="password" size="40" name="Passwort2"/></td></tr>
|
||||
<tr><td> </td><td><input type="submit" value="register me..."/></td></tr>
|
||||
</table>
|
||||
</form>
|
||||
* entry required!
|
||||
|
||||
<?php
|
||||
include ("./inc/footer.php");
|
||||
?>
|
||||
|
Binary file not shown.
After Width: | Height: | Size: 267 B |
Loading…
Reference in New Issue