-
Notifications
You must be signed in to change notification settings - Fork 29
/
pulihkan_akun_baru.php
85 lines (75 loc) · 2.74 KB
/
pulihkan_akun_baru.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
<?php
session_start() ;
include('connect/connection.php');
?>
<?php
if(isset($_POST["reset"])){
include('connect/connection.php');
$psw = $_POST["password"];
$cpsw = $_POST["cpassword"];
if($psw !== $cpsw){
$errors['password'] = "Password tidak sama";
}
$token = $_SESSION['token'];
$Email = $_SESSION['email'];
$hash = password_hash( $psw , PASSWORD_DEFAULT );
$sql = mysqli_query($connect, "SELECT * FROM login WHERE email='$Email'");
$query = mysqli_num_rows($sql);
$fetch = mysqli_fetch_assoc($sql);
if($psw !== $cpsw){
?>
<script>
window.location.replace('./popup/pulihkan_akun_pts.php');
</script>
<?php
}
if($Email){
$new_pass = $hash;
mysqli_query($connect, "UPDATE login SET password='$new_pass' WHERE email='$Email'");
?>
<script>
window.location.replace("./popup/pulihkan_akun_berhasil2.php");
</script>
<?php
}else{
?>
<script>
window.location.replace("./popup/pulihkan_akun_err.php");
</script>
<?php
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<title>Pemulihan Akun</title>
<link rel="stylesheet" href="./css/password_baru.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="./js/main.js"></script>
<link rel="icon" href="../image/forget.png">
</head>
<body>
<div class="box">
<div class="form">
<form action="#" method="POST">
<h2>Balikin Akun Lu</h2>
<div class="inputBox">
<input type="password" id="password" name="password" required="required" autocomplete="off" autofocus>
<span>Password Baru Yg Kuat Sekalian</span>
<i></i>
</div>
<div class="inputBox">
<input type="password" id="password" name="cpassword" required="required" autocomplete="off" autofocus>
<span>Konfirmasi Passwordnya</span>
<i></i>
</div>
<input type="submit" value="Balikin" name="reset">
<br>
</form>
</div>
</div>
</body>