-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
113 lines (109 loc) · 5.21 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?php
error_reporting(0);
session_start();
include('includes/include_once/db.php');
if (isset($_POST['submit'])) {
$email = mysqli_real_escape_string($connect, $_POST['email']);
$password = mysqli_real_escape_string($connect, $_POST['pass']);
$check = "SELECT * FROM users WHERE email = '$email'"; //and accountStatus = 'Active"
$exec = mysqli_query($connect, $check);
$find = mysqli_num_rows($exec);
if ($find == TRUE) {
$checkPass = mysqli_fetch_assoc($exec);
$tempPass = $checkPass['password'];
$decode_pass = password_verify($password, $tempPass);
$_SESSION['fullName'] = $checkPass['fullName'];
$accountStatus = $checkPass['status'];
if ($decode_pass) {
if ($accountStatus == Active) {
session_start('mID');
header("location:dash.php");
exit();
} else {
$message = "Your account is inactive";
}
} else {
$message = "Entered email or password is incorrect";
}
} else {
$message = "Invalid email address";
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>TRYON | LOGIN</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="images/logo/logo-2.png"/>
<link rel="stylesheet" type="text/css" href="includes/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="includes/fonts/material-design-iconic-font.css">
<link rel="stylesheet" type="text/css" href="css/login.css">
<script src="includes/jquery/jquery.min.js"></script>
<script src="includes/bootstrap/js/bootstrap.min.js"></script>
</head>
<body>
<div class="limiter">
<div class="container-login100">
<div class="wrap-login100">
<form class="login100-form validate-form" method="POST" action="<?php echo htmlentities($_SERVER['PHP_SELF']); ?>">
<span class="login100-form-logo">
<img src="images/logo/logo-2.png" height="80">
</span>
<span class="login100-form-title p-b-20 p-t-27">
Log in
</span>
<div class="wrap-input100 validate-input" data-validate = "Enter username">
<input class="input100" id="email" type="text" name="email" placeholder="email" oninput="checkEmail()">
<span class="focus-input100" data-placeholder=""></span>
</div>
<div class="wrap-input100 validate-input" data-validate="Enter password">
<input class="input100" type="password" name="pass" placeholder="Password">
<span class="focus-input100" data-placeholder=""></span>
</div>
<div id="result"></div>
<div class="contact100-form-checkbox">
<!-- <input class="input-checkbox100" id="ckb1" type="checkbox">
<label class="label-checkbox100" for="ckb1">
Remember me
</label>-->
</div>
<div class="container-login100-form-btn">
<button class="login100-form-btn" id="validate" type="submit" name="submit">
Login
</button>
</div>
</form>
<div class="text-center p-t-30">
<a class="txt1" href="forgot.php">
Forgot Password?
</a>
</div>
<!-- Position it -->
<div style="position: absolute; top: 0; right: 0;">
<script>
$(function () {
$('.toast').toast('show');
});
</script>
<?php if($message != ''){?>
<!-- Then put toasts within -->
<div class="toast" role="alert" data-delay="5000">
<div class="toast-header" style="background-color:#ce0e58;">
<strong class="mr-auto" style="color: white;">Login Failed</strong>
<button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="toast-body">
<?=$message; ?>
</div>
</div> <?php } ?>
</div>
</div>
</div>
</div>
<script src="js/validation.js"></script>
</body>
</html>