-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
67 lines (60 loc) · 2.51 KB
/
popup.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
64
65
66
67
<!--edit by LaoHax Dev-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Get Token</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<style type="text/css">
.hide {
display: none;
}
</style>
</head>
<body>
<div class="col-lg-12 account-login-info hide">
<form>
<div class="form-group">
<label class="form-control-label">UID</label>
<input type="text" class="form-control" id="account-uid" readonly="">
</div>
<div class="form-group">
<label class="form-control-label">Password:</label>
<input type="password" class="form-control" id="account-password" placeholder="enter password">
</div>
<div class="form-group">
<label class="form-control-label">Cookie</label>
<input type="text" class="form-control" id="account-cookie">
</div>
<div class="form-group">
<label class="form-control-label">Token</label>
<input type="text" class="form-control" id="account-token">
</div>
<center>
<div style="width: 500px;padding-top: 10px;">
<div class="col-lg-12 thongbao">
</div>
<div class="col-lg-12 ninja-login hide">
<div class="form-group">
<label class="form-control-label">Cookie</label>
<input type="text" class="form-control" id="login-cookie">
</div>
<div class="form-group">
<label class="form-control-label">Token </label>
<input type="text" class="form-control" id="login-token">
</div>
</center>
</div>
<div class="form-group text-center">
<button class="btn btn-primary account-btn-get-token">Get Token</button>
<hr />
<a class="btn btn-danger" href="https://lao-hax.online" target="_blank">Lao-Hax.online</a> <a class="btn btn-success" href="https://www.facebook.com/kongkun.kongdat" target="_blank">Facebook</a><hr />
<small>Edit by LaoHax Dev</small>
</div>
</form>
</div>
</div>
</body>
<script src="jquery.min.js"></script>
<script src="popup.js"></script>
</html>
<!--edit by LaoHax Dev-->