-
Notifications
You must be signed in to change notification settings - Fork 0
/
discord_unlink.php
executable file
·99 lines (89 loc) · 3.22 KB
/
discord_unlink.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
<?php
require "api/functions.php";
require "api/users/functions.php";
require "api/users/cookies.php";
if (!$user || !$user->discord_id) redirect_to_home();
$error = "";
$fatal_error = "";
$notice = "";
try {
if (post("submit")) {
if (!check_csrf(post("csrf_token"))) $error = "Mã xác thực CSRF không đúng.";
else if (!post("password")) $error = "Vui lòng nhập mật khẩu.";
else if (!$user->verify_passphrase(post("password"))) $error = "Mật khẩu không đúng.";
else {
db_query('UPDATE `nbhzvn_users` SET `discord_id` = "" WHERE `id` = ?', $user->id);
$fatal_error = "Bỏ liên kết tài khoản Discord thành công.";
}
}
}
catch (Exception $ex) {
switch ($ex->getMessage()) {
case MISSING_INFORMATION: {
$error = "Vui lòng nhập đầy đủ thông tin.";
break;
}
default: {
$error = "Có lỗi không xác định xảy ra. Vui lòng báo cáo cho nhà phát triển của website.";
break;
}
}
}
refresh_csrf();
?>
<!DOCTYPE html>
<html lang="zxx">
<head>
<?php
$title = "Bỏ Liên Kết Discord";
require __DIR__ . "/head.php";
?>
</head>
<body>
<!-- Header Section Begin -->
<header class="header">
<?php require "header.php"; ?>
</header>
<!-- Header End -->
<!-- Normal Breadcrumb Begin -->
<section class="normal-breadcrumb set-bg" data-setbg="/img/normal-breadcrumb.jpg">
</section>
<!-- Normal Breadcrumb End -->
<!-- Signup Section Begin -->
<section class="signup spad">
<div class="container">
<div class="login__form page">
<h3>Bỏ Liên Kết Discord</h3>
<?php if ($fatal_error): ?>
<p><?php echo $fatal_error ?></p>
<p><a href="/"><button class="site-btn">Về Trang Chủ</button></p>
<?php else: ?>
<p>Nhập mật khẩu để tiến hành bỏ liên kết với tài khoản Discord của bạn.</p>
<form action="" method="POST">
<div class="input__item" style="width: 100%">
<input type="password" name="password" placeholder="Mật Khẩu" required>
<span class="icon_lock"></span>
</div>
<input type="hidden" name="csrf_token" value="<?php echo get_csrf(); ?>" />
<p style="color: #e36666"><i><?php echo $error ?></i></p>
<button type="submit" name="submit" class="site-btn" value="Submit">Xác Nhận</button>
</form>
<?php endif ?>
</div>
</div>
</section>
<!-- Signup Section End -->
<!-- Footer Section Begin -->
<footer class="footer">
<?php require "footer.php" ?>
</footer>
<!-- Footer Section End -->
<!-- Js Plugins -->
<script src="/js/jquery-3.3.1.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/mixitup.min.js"></script>
<script src="/js/jquery.slicknav.js"></script>
<script src="/js/owl.carousel.min.js"></script>
<script src="/js/main.js"></script>
</body>
</html>