-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.html
59 lines (53 loc) · 1.69 KB
/
main.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="utils/bootstrap/css/bootstrap.min.css" />
<!-- Bootstrap JavaScript -->
<script src="utils/bootstrap/js/jquery-3.7.0.js"></script>
<script src="utils/bootstrap/js/bootstrap.bundle.min.js"></script>
</head>
<!-- <hr class="solid"> Divisore -->
<body>
<div class="header">
<div class="logo">
<img src="images/icon.png" class="icon" alt="icon" />
<h6 class="title">Dark Pattern<br />Identifier</h6>
</div>
<div class="switch__cont">
<div class="container">
<label class="switch">
<input type="checkbox" id="switch__status" />
<span class="slider"></span>
</label>
</div>
</div>
</div>
<div class="main__section">
<div class="main__header">
<div class="list__cmds">
<a href="" id="list__dec"> < </a>
<div class="list__index"># out of #</div>
<a href="" id="list__inc"> > </a>
</div>
<p id="DP_Type">Hidden Information</p>
<!-- <a href="" id="DP_Type" onclick="event.preventDefault();">Type</a> -->
<div class="CUR__WSContainer center">
<hr class="solid" />
<p id="CUR__Website" class="center">https://example.com/</p>
</div>
</div>
</div>
<div class="footer">
<p class="footer__text center">
Dark Pattern Identifier is an Extension created by Carmine Calabrese and
Mario Lezzi that identifies Dark pattern within a Web Page.
</p>
</div>
<script src="popup.js"></script>
</body>
</html>