-
Notifications
You must be signed in to change notification settings - Fork 50
/
login.php
192 lines (150 loc) · 5.55 KB
/
login.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<html>
<?php
session_start();
// var_dump(isset($_SESSION['id']));
// var_dump($_SESSION);
//echo 'seesion available';
if(isset($_SESSION['id'])){
header("Location: index.php"); die();
}
?>
<head>
<!--Import Google Icon Font-->
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection" />
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<style>
input:not([type]),
input[type=text],
input[type=password],
input[type=email],
input[type=url],
input[type=time],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=tel],
input[type=number],
input[type=search],
textarea.materialize-textarea {
padding-left: 30px;
width: 90%;
}
.container p {
color: rgba(199, 199, 199, 0.64);
font-size: 14x;
font-style: italic;
}
input:last-child {
margin-bottom: 5px;
}
#login-btn {
margin-top: 2px;
margin-bottom: 10px;
}
body {
color: red;
}
.btn.waves-effect {
margin-bottom: 30px;
}
#modal-header {
color: black !important;
text-decoration: underline;
}
#modal-content {
color: black;
}
</style>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<?php include 'header.php'; ?>
<br/><br/>
<!-- <?php echo '1.session'; var_dump($_SESSION); echo '<hr>';?>-->
<?php if(empty($_SESSION)){
echo '<div class="container" id="reg-cont">
<center>
<h4>Login</h4></center>
<form action="" method="POST" class="reg-c" id="myForm">
<div class="input-field col s6">
<input id="uname" type="text" placeholder="Username" class="validate" name="username" required>
</div>
<div class="input-field col s6">
<input id="pwd" type="password" placeholder="Password" class="validate" name="password" pattern=".{6,}" required>
</div>
<p>
<input type="checkbox" class="filled-in" id="filled-in-box" checked="checked" />
<label for="filled-in-box">Remember me</label>
</p>
<br/>
<center>
<input type="submit" class="btn waves-effect" value="LOGIN">
</center>
</form>
</div>';} ?>
<!--background-color: rgba(0, 11, 56, 0.9);-->
<br/>
<br/>
<?php
include 'connection.php';
$login = $db_site->prepare("SELECT * FROM users WHERE username=? and password=?");
if($_POST){
$username = $_POST['username'];
$password = $_POST['password'];
$login->execute(array($username,$password));
$login_array = $login->fetch(PDO::FETCH_ASSOC);
$row = $login->rowCount();
// var_dump($login_array);
// var_dump($row);
if($row){
$_SESSION['username'] = $login_array['username'];
$_SESSION['id'] = $login_array['id'];
$_SESSION['sub'] = $login_array['sub'];
// echo '<hr>2.session'; var_dump($_SESSION);
$db_site = null;
// echo '<body onload="Materialize.toast(\'Success!\', 4000, \'blue\')">';
echo '<meta http-equiv="refresh" content="0; index.php" />';
die();
}else{//if user&pass not true
echo '<body onload="Materialize.toast(\'Wrong username or password!\', 4000, \'red\')">';
// echo '<div class="container" id="reg-cont">
// <center>
// <h4>Login</h4></center>
// <form action="" method="POST" class="reg-c" id="myForm">
// <div class="input-field col s6">
// <input id="uname" type="text" placeholder="Username" class="validate" name="username" required>
//
// </div>
// <div class="input-field col s6">
// <input id="pwd" type="password" placeholder="Password" class="validate" name="password" pattern=".{6,}" required>
//
// </div>
// <p>
// <input type="checkbox" class="filled-in" id="filled-in-box" checked="checked" />
// <label for="filled-in-box">Remember me</label>
// </p>
// <br/>
//
//
//
// <center>
// <input type="submit" class="btn waves-effect" value="LOGIN">
// </center>
//
// </form>
// </div>';
}
}
$db_site = null;
?>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="js/modal.js"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
</body>
</html>