-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresetpass.php
144 lines (134 loc) · 4.46 KB
/
resetpass.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
<?php
require_once 'includes/class.user.php';
$user = new USER();
if(empty($_GET['id']) && empty($_GET['code']))
{
$user->redirect('index.php');
}
if(isset($_GET['id']) && isset($_GET['code']))
{
$id = base64_decode($_GET['id']);
$code = $_GET['code'];
$stmt = $user->runQuery("SELECT id FROM users WHERE id = ? AND email_verification_code = ? ");
$stmt->bind_param('is', $id, $code);
$stmt->execute();
$stmt->bind_result($newid);
$stmt->fetch();
$row = $stmt->num_rows;
$stmt->close();
if(isset($newid))
{
if(isset($_POST['submit']))
{
$password = $_POST['password'];
$cpass = $_POST['confirmpassword'];
if($cpass!==$password)
{
$msg = "<div class='alert alert-danger'>
<button class='close' data-dismiss='alert'>×</button>
<span class='glyphicon glyphicon-info-sign'></span>
<strong>Sorry</strong> Password doesn't match
</div>";
}
else
{
$password = md5($password);
$stmt = $user->runQuery("UPDATE users SET password = ?, updated_at = now() WHERE id = ?");
$stmt->bind_param('si', $password, $id);
$stmt->execute();
$stmt->close();
$msg = "<div class='alert alert-success'>
<button class='close' data-dismiss='alert'>×</button>
<span class='glyphicon glyphicon-info-sign'></span>
<strong>Success!</strong><p>Password Changed, redirecting back to login</p>
</div>";
header("refresh:5;index.php");
}
}
}
else
{
exit;
}
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>AdminLTE 2 | Log in</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- Bootstrap 3.3.6 -->
<link rel="stylesheet" href="node_modules/admin-lte/bootstrap/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="node_modules/font-awesome/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="node_modules/ionicons/dist/css/ionicons.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="node_modules/admin-lte/dist/css/AdminLTE.min.css">
<!-- iCheck -->
<link rel="stylesheet" href="node_modules/admin-lte/plugins/iCheck/square/blue.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="hold-transition login-page">
<div class="login-box">
<div class="login-logo">
<a href="/"><b>Admin</b>LTE</a>
</div>
<!-- /.login-logo -->
<div class="login-box-body">
<p class="login-box-msg">Reset Password</p>
<?php if(isset($msg)) { echo $msg; }
else {
echo "<div class=\"alert alert-info\">
<span class='glyphicon glyphicon-info-sign'></span>
Please Enter your new Password
</div>";
}
?>
<form method="post">
<div class="form-group has-feedback">
<input name="password" id="password" type="password" class="form-control" placeholder="Password" >
<span class="glyphicon glyphicon-lock form-control-feedback"></span>
</div>
<div class="form-group has-feedback">
<input name="confirmpassword" id="password" type="password" class="form-control" placeholder="Retype password">
<span class="glyphicon glyphicon-log-in form-control-feedback"></span>
</div>
<div class="row">
<!-- /.col -->
<div class="col-xs-12">
<button name="submit" type="submit" class="btn btn-primary btn-block btn-flat">Reset Password </button>
</div>
<!-- /.col -->
</div>
</form>
</div>
<!-- /.login-box-body -->
</div>
<!-- /.login-box -->
<div id="message" class="col-md-12"></div>
<!-- jQuery 2.2.3 -->
<script src="node_modules/admin-lte/plugins/jQuery/jquery-2.2.3.min.js"></script>
<!-- Bootstrap 3.3.7 -->
<script src="node_modules/admin-lte/bootstrap/js/bootstrap.min.js"></script>
<!-- iCheck -->
<script src="node_modules/admin-lte/plugins/iCheck/icheck.min.js"></script>
<script>
$(function () {
$('input').iCheck({
checkboxClass: 'icheckbox_square-blue',
radioClass: 'iradio_square-blue',
increaseArea: '20%' // optional
});
});
</script>
</body>
</html>