bills/login.php
2022-02-22 12:00:53 +02:00

79 lines
2.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
session_start();
include_once('head.php');
if (isset($_SESSION['loggedin']) || $_SESSION['loggedin'] == true) {
header("Location: index.php");
exit;
}
include('connection.php');
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$email = $_POST['email'];
$password = $_POST['pwd'];
$emailErr = $passwordErr = NULL;
$dbuser_id = $dbusername = $dbemail = $dbpassword_hashed = NULL;
$query = "SELECT user_id, username, email, password FROM Users WHERE email = '$email'";
$userdata = mysqli_query($conn, $query);
if (mysqli_num_rows($userdata) > 0) {
while($row = mysqli_fetch_assoc($userdata)) {
$dbuser_id = $row['user_id'];
$dbusername = $row['username'];
$dbemail = $row['email'];
$dbpassword_hashed = $row['password'];
}
if (password_verify($password, $dbpassword_hashed)) {
$_SESSION['loggedin'] = true;
$_SESSION['user_id'] = $dbuser_id;
$_SESSION['username'] = $dbusername;
$_SESSION['email'] = $dbemail;
header("Location: index.php");
mysqli_close($conn);
} else {
$passwordErr = "Неправильный пароль";
}
} else {
$emailErr = "Почта не зарегестрирована";
}
}
?>
<link rel="stylesheet" href="css/sign.css"/>
<body>
<form method="post" class="form">
<h1>Войти</h1>
<div class="error">* обязательное поле</div>
<br>
<input type="text" name="email" placeholder="Email *" class="input" autofocus>
<div class="error"><?php echo $emailErr ?></div>
<br>
<input type="password" name="pwd" placeholder="Пароль *" class="input">
<div class="error"><?php echo $passwordErr ?></div>
<br>
<button type="submit" name="submit" class="submit_button">Войти</button>
<p>У вас ещё нету аккаунта? <a href="sign_up.php" class="link">Создать аккаунт</a></p>
</form>
</body>
</html>