Renaming everything to english. #9

Merged
td00 merged 4 commits from unifylang into master 2021-01-08 14:50:46 +00:00
Showing only changes of commit 8e4f753e63 - Show all commits

View File

@ -4,18 +4,18 @@ $pdo = new PDO('mysql:host=localhost;dbname=usertable', 'usertable', 'password')
if(isset($_GET['login'])) {
$email = $_POST['email'];
$passwort = $_POST['passwort'];
$password = $_POST['password'];
$statement = $pdo->prepare("SELECT * FROM users WHERE email = :email");
$result = $statement->execute(array('email' => $email));
$user = $statement->fetch();
//Überprüfung des Passworts
if ($user !== false && password_verify($passwort, $user['passwort'])) {
if ($user !== false && password_verify($password, $user['password'])) {
$_SESSION['userid'] = $user['id'];
$_SESSION['email'] = $user['email'];
$_SESSION['givenName'] = $user['vorname'];
$_SESSION['lastName'] = $user['nachname'];
$_SESSION['givenName'] = $user['givenName'];
$_SESSION['lastName'] = $user['lastName'];
die('successfull. go to: <a href="secure.php">secure page</a>');
} else {
$errorMessage = "somethings wrong (maybe wrong password or wrong email)<br>";
@ -41,7 +41,7 @@ E-Mail:<br>
<input type="email" size="40" maxlength="250" name="email"><br><br>
Your password:<br>
<input type="password" size="40" name="passwort"><br>
<input type="password" size="40" name="password"><br>
<input type="submit" value="GO">
</form>