-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (60 loc) · 2.51 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Check IMEI</title>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YG0MPPSMLT"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-YG0MPPSMLT');
</script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-5">
<div class="row">
<div class="col-md-6 offset-md-3">
<h2 class="text-center mb-4">Xiaomi IMEI Checker</h2>
<div class="input-group mb-3">
<input type="text" id="imeiInput" class="form-control" placeholder="Nhập số IMEI...">
<button class="btn btn-primary" type="button" onclick="checkIMEI()">Kiểm tra</button>
</div>
<a class="text-primary text-center" href="./model.html">Kiểm Tra Quốc Gia Xiaomi</a>
<div id="result" class="mt-4"></div>
</div>
</div>
</div>
<script>
function checkIMEI() {
var imei = document.getElementById('imeiInput').value.trim();
var apiUrl = 'https://api.quanlybanhang.store/mi/fmi.php?imei=' + imei;
fetch(apiUrl)
.then(function(response) {
if (response.status !== 200) {
throw Error('IMEI/Code không hợp lệ');
}
return response.json();
})
.then(function(data) {
var message = data.message;
var resultText;
if (message === 'FIND XIAOMI ON') {
resultText = 'Tìm Xiaomi đang bật';
document.getElementById('result').innerHTML = '<div class="alert alert-danger" role="alert">' + resultText + '</div>';
} else if (message === 'FIND XIAOMI OFF') {
resultText = 'Tìm Xiaomi đã tắt';
document.getElementById('result').innerHTML = '<div class="alert alert-success" role="alert">' + resultText + '</div>';
} else {
throw Error('Không thể xác định được trạng thái của thiết bị từ server');
}
})
.catch(function(error) {
document.getElementById('result').innerHTML = '<div class="alert alert-danger" role="alert">' + error.message + '</div>';
});
}
</script>
</body>
</html>