-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
59 lines (54 loc) · 2.02 KB
/
index.php
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
59
<?php
require './includes/db.php';
$data = $_POST;
if (isset($data['do_login'])) {
$errors = array();
$user = R::findOne('users', 'email = ?', array($data['email']));/* Поиск пользователя по email */
if ($user) {
if (password_verify($data['password'], $user->password)) {/* Проверка пароля */
if ($user->status == 'acting') {/* Проверка заблокирован ли пользователь */
$_SESSION['logged_user'] = $user;/* Создание сесии с пользователем */
header('Location: /cabinet.php');/* Переход в личный кабинет */
} else {
$errors[] = 'Пользователь заблокирован';
}
} else {
$errors[] = 'Неверно введен пароль';
}
} else {
$errors[] = 'Пользователь с таким email не найден';
}
if (!empty($errors)) {
echo '<div style="color: red; text-align:center; font-size: 18px;">' . array_shift($errors) . '</div>';
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Вход</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<div class="wrapper">
<div class="subcontainer">
<div class="entry sub-wrapper">
<h1 class="title">Добро пожаловать!</h1>
<form method="POST" action="/index.php" class="entry__form form">
<div class="form__inputs">
<input type="text" name="email" placeholder="Введите email" class="form__input ">
<input type="password" name="password" placeholder="Введите пароль" class="form__input ">
</div>
<div class="entry__buttons">
<a href="./registration.php" class="entry__register form__button">Зарегистрироваться</a>
<button class="form__button" type="submit" name="do_login">Войти</button>
</div>
</form>
</div>
</div>
</div>
</body>
</html>