-
Notifications
You must be signed in to change notification settings - Fork 0
/
officebearerIndex.php
127 lines (113 loc) · 3.61 KB
/
officebearerIndex.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?php
require_once 'php_action/db_connect.php';
if (session_status() == PHP_SESSION_NONE) {
session_start();
}
if(isset($_SESSION['userId'])) {
header('location: dashboard.php');
}
require_once 'includes/indexHeader.php';
$errors = array();
if($_POST) {
$loginid = $_POST['loginid'];
$password = $_POST['password'];
if(empty($loginid) || empty($password)) {
if($loginid == "") {
$errors[] = "Login-id is required";
}
if($password == "") {
$errors[] = "Password is required";
}
}
else {
$loginid = strtolower($loginid);
$sql = "SELECT * FROM officebearer WHERE emailid = ?";
$stmt = $connect->prepare($sql);
$stmt->bind_param("s", $loginid);
$stmt->execute();
$result = $stmt->get_result();
if($result->num_rows == 1) {
// exists
$result->data_seek(0);
$value = $result->fetch_assoc();
if(password_verify($password,$value['password'])) {
$_SESSION['userId'] = -2;
$_SESSION['loginId'] = $value['emailid'];
$_SESSION['access'] = $value['permission'];
header('location: dashboard.php');
} else{
$errors[] = "Incorrect loginid/password combination";
}
} else {
$errors[] = "Invalid Login-id!";
}
}
}
?>
<!DOCTYPE html>
<html>
<head>
<title>IIT BBS Gymkhana</title>
<!-- bootstrap -->
<link rel="stylesheet" href="assests/bootstrap/css/bootstrap.min.css">
<!-- bootstrap theme-->
<link rel="stylesheet" href="assests/bootstrap/css/bootstrap-theme.min.css">
<!-- font awesome -->
<link rel="stylesheet" href="assests/font-awesome/css/font-awesome.min.css">
<!-- custom css -->
<link rel="stylesheet" href="custom/css/custom.css">
<!-- jquery -->
<script src="assests/jquery/jquery.min.js"></script>
<!-- jquery ui -->
<link rel="stylesheet" href="assests/jquery-ui/jquery-ui.min.css">
<script src="assests/jquery-ui/jquery-ui.min.js"></script>
<!-- bootstrap js -->
<script src="assests/bootstrap/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="row vertical">
<div class="col-md-6 col-md-offset-3">
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">Welcome Office bearer, please sign in</h3>
</div>
<div class="panel-body">
<div class="messages">
<?php if($errors) {
foreach ($errors as $key => $value) {
echo '<div class="alert alert-warning" role="alert">
<i class="glyphicon glyphicon-exclamation-sign"></i>
'.$value.'</div>';
}
} ?>
</div>
<form class="form-horizontal" action="<?php echo $_SERVER['PHP_SELF'] ?>" method="post" id="loginForm">
<fieldset>
<div class="form-group">
<label for="loginid" class="col-sm-2 control-label">Login id</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="loginid" name="loginid" placeholder="Enter your login id..." autocomplete="off" />
</div>
</div>
<div class="form-group">
<label for="password" class="col-sm-2 control-label">Password</label>
<div class="col-sm-10">
<input type="password" class="form-control" id="password" name="password" placeholder="Enter your Password..." autocomplete="off" />
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-default"> <i class="glyphicon glyphicon-log-in"></i> Sign in</button>
</div>
</div>
</fieldset>
</form>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
<?php require_once 'includes/indexFooter.php'; ?>