|
1 | 1 | <!DOCTYPE html>
|
2 | 2 | <html>
|
3 |
| -<head> |
4 |
| - <title>FastForward</title> |
5 |
| - <meta charset="UTF-8"> |
6 |
| - <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
7 |
| - <script src="base.js"></script> |
8 |
| - <link rel="stylesheet" href="style.css" /> |
9 |
| - <style> |
10 |
| - .container { |
11 |
| - border-radius: 5px; |
12 |
| - box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); |
13 |
| - padding: 20px; |
14 |
| - width: 80%; |
15 |
| - max-width: 600px; |
16 |
| - margin: 0 auto; |
17 |
| - text-align: center; |
18 |
| - } |
19 |
| - p { |
20 |
| - color: #ffffff; |
21 |
| - font-size: 28px; |
22 |
| - line-height: 1.5; |
23 |
| - } |
24 |
| - buttons { |
25 |
| - border: 2px solid; |
26 |
| - border-image: linear-gradient( |
27 |
| - 135deg, |
28 |
| - var(--ff-aqua) 0%, |
29 |
| - var(--ff-blue) 50%, |
30 |
| - var(--ff-purple) 100% |
31 |
| - ) |
32 |
| - 1; |
33 |
| - background-color: transparent; |
34 |
| - border: none; |
35 |
| - padding: 10px 20px; |
36 |
| - font-size: 18px; |
37 |
| - cursor: pointer; |
38 |
| - border-radius: 5px; |
39 |
| - transition: background-color 0.3s ease; |
40 |
| - } |
41 |
| - </style> |
42 |
| -</head> |
43 |
| -<body> |
44 |
| - <nav> |
45 |
| - <ul> |
46 |
| - <div class="logo-wrapper"><img class="logo" src="../icon/branding.png" alt="FastForward"></div> |
47 |
| - </ul> |
48 |
| - </nav> |
49 |
| - <div class="uk-margin-top uk-margin-bottom uk-margin-left uk-margin-right"> |
50 |
| - <div class="container"> |
51 |
| - <h2>Thank you for installing FastForward</h2> |
52 |
| - <p> |
53 |
| - This extension collects the tab url when you choose to add a website to the whitelist. |
54 |
| - </p> |
55 |
| - <p> |
56 |
| - If you consent to this data collection hit "Agree". Otherwise hit "Refuse" |
57 |
| - </p> |
58 |
| - <button id="agree" class="buttons" value="Agree">Agree</button> |
59 |
| - <button id="refuse" class="buttons" value="Refuse">Refuse</button> |
60 |
| - </div> |
61 |
| - |
62 |
| -<script src="consent.js"></script> |
63 |
| -</body> |
| 3 | + <head> |
| 4 | + <title>FastForward</title> |
| 5 | + <meta charset="UTF-8"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 7 | + <script src="base.js"></script> |
| 8 | + <link rel="stylesheet" href="style.css" /> |
| 9 | + <style> |
| 10 | + .container { |
| 11 | + border-radius: 5px; |
| 12 | + box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); |
| 13 | + padding: 20px; |
| 14 | + width: 80%; |
| 15 | + max-width: 600px; |
| 16 | + margin: 0 auto; |
| 17 | + text-align: center; |
| 18 | + } |
| 19 | + p { |
| 20 | + color: #ffffff; |
| 21 | + font-size: 28px; |
| 22 | + line-height: 1.5; |
| 23 | + } |
| 24 | + .buttons { |
| 25 | + border: 2px solid; |
| 26 | + border-image: linear-gradient( |
| 27 | + 135deg, |
| 28 | + var(--ff-aqua) 0%, |
| 29 | + var(--ff-blue) 50%, |
| 30 | + var(--ff-purple) 100% |
| 31 | + ) |
| 32 | + 1; |
| 33 | + background-color: transparent; |
| 34 | + border: none; |
| 35 | + padding: 10px 20px; |
| 36 | + font-size: 24px; |
| 37 | + cursor: pointer; |
| 38 | + border-radius: 5px; |
| 39 | + transition: background-color 0.3s ease; |
| 40 | + } |
| 41 | + </style> |
| 42 | + </head> |
| 43 | + <body> |
| 44 | + <nav> |
| 45 | + <ul> |
| 46 | + <div class="logo-wrapper"><img class="logo" src="../icon/branding.png" alt="FastForward"></div> |
| 47 | + </ul> |
| 48 | + </nav> |
| 49 | + <div class="uk-margin-top uk-margin-bottom uk-margin-left uk-margin-right"> |
| 50 | + <div class="container"> |
| 51 | + <h2>Thank you for installing FastForward</h2> |
| 52 | + <p> |
| 53 | + This extension collects the tab url when you choose to add a website to the whitelist. |
| 54 | + </p> |
| 55 | + <p> |
| 56 | + If you consent to this data collection hit "Agree". Otherwise hit "Refuse" |
| 57 | + </p> |
| 58 | + <button id="agree" class="buttons" value="Agree">Agree</button> |
| 59 | + <button id="refuse" class="buttons" value="Refuse">Refuse</button> |
| 60 | + </div> |
| 61 | + <script src="consent.js"></script> |
| 62 | + </body> |
64 | 63 | </html>
|
0 commit comments