-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
36 lines (32 loc) · 970 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Priva</title>
<link rel="stylesheet" href="popup.css">
</head>
<body>
<!--Name and Logo-->
<div id="main">
<div class="logo-header">
<img id="logo" src="shield.png" />
<div id="logoName">Priva</div>
</div>
<!--Space between above and Question and Reponse Box-->
<p>
</p>
<!--Question and Reponse box-->
<div class="summary-container">
<h4 id="question"></h4>
<div id="response"></div>
<h6>Read the full Privacy Policy and Terms and Conditions for more details.</h6>
</div>
<script src="script.js"></script>
<!--Warning-->
<div>
<p id="disclaimer">Please note that this extension uses an AI.
As such, it is prone to errors and misrepresentation.
The information provided by this extension is not a substitute
for reading an entity's Terms and Conditions and Privacy Policy yourself.</>
</div>
</body>
</html>