summaryrefslogtreecommitdiff
path: root/nonpublic/passwort.php
blob: 378609465a3d0ed91261454c5915f7c72466a254 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
$title = "Himmel";
$header = "News";
include ("./inc/header.php");

if (!IsSet($action)) {

?>

Hier kannst du dein Kennwort f&uuml;r unsere Himmelsverwaltung &auml;ndern. <br><br>

<form action="./passwort.php" method="post">
	<input type="hidden" name="action" value="set">
	<table>
	  <tr><td>Altes Passwort:</td><td><input type="password" name="old" size="20"></td></tr>
	  <tr><td>Neues Passwort:</td><td><input type="password" name="new1" size="20"></td></tr>
	  <tr><td>Passwortbest&auml;tigung:</td><td><input type="password" name="new2" size="20"></td></tr>
	</table>
	<input type="submit" value="Abschicken...">
</form>
<?

} else {

	if ($action == "set") {
		if ($new1==$new2){
			echo "Eingegebene Kennw&ouml;rter sind nicht gleich. -> ok.<br>";
			echo "Check, ob altes Passwort ok ist.";
			$sql = "select * from User where UID=".$_SESSION['UID'];
			$Erg = mysql_query($sql, $con);
			if (md5($old)==mysql_result($Erg, $i, "Passwort")) {
				echo "-> ok.<br>";
				echo "Setzen des neuen Kennwortes...: ";
				$usql = "update User set Passwort='".md5($new1)."' where UID=".$_SESSION['UID'];
				$Erg = mysql_query($usql, $con);
				if ($Erg==1) {
					echo "Neues Kennwort wurde gesetzt.";
				} else {
					echo "Ein Fehler ist trotzdem noch aufgetreten. Probiere es einfach nocheinmal :)";
				}

				
			} else {
				echo "-> nicht ok.<br>";
				echo "Altes Kennwort ist nicht ok. Bitte wiederholen.<br>";
			}
			
		} else {
			echo "Kennw&ouml;rter sind nicht gleich. Bitte wiederholen.";
		}
	
	} else {
		echo "Ung&uuml;ltiger Aufruf!\n";
	}
}

include ("./inc/footer.php");
?>