-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
140 lines (115 loc) · 3.82 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
session_start();
// echo "came to index";
require_once 'php_action/db_connect.php';
if(isset($_SESSION['userId'])) {
header('location: dashboard.php');
}
require_once 'includes/indexHeader.php';
$errors = array();
if($_POST) {
$rollno = $_POST['rollno'];
$password = $_POST['password'];
if(empty($rollno) || empty($password)) {
if($rollno == "") {
$errors[] = "Rollno is required";
}
if($password == "") {
$errors[] = "Password is required";
}
}
else {
$rollno = strtolower($rollno);
$sql = "SELECT * FROM student WHERE rollno = ?";
$stmt = $connect->prepare($sql);
$stmt->bind_param("s", $rollno);
$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'])) {
$user_id = $value['rollno'];
// set session
$_SESSION['hostel'] = $value['hostelname'];
$_SESSION['userId'] = $user_id;
$_SESSION['access'] = $value['permission'];
$result->close();
header('location: dashboard.php');
} else{
$errors[] = "Incorrect rollno/password combination";
} // /else
} else {
$errors[] = "Rollno does not exists";
} // /else
}
}
?>
<!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 Student, 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="rollno" class="col-sm-2 control-label">Login id</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="rollno" name="rollno" placeholder="Enter your Insititute Roll No..." 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'; ?>