-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.html
More file actions
89 lines (79 loc) · 2.61 KB
/
Copy pathpopup.html
File metadata and controls
89 lines (79 loc) · 2.61 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mon Extension</title>
<link href="https://fonts.googleapis.com/css2?family=Quantum&display=swap" rel="stylesheet">
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
padding: 0;
background-color: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(2px);
overflow: hidden;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}
.container {
overflow: hidden;
}
.product {
background-color: rgba(0, 0, 0, 0.7);
color: #ffffff;
width: 300px;
text-align: center;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
box-sizing: border-box;
}
h1 {
font-size: 24px;
margin-bottom: 10px;
font-family: 'Quantum', sans-serif;
color: #8A2BE2;
text-shadow: 0 0 10px rgba(138, 43, 226, 0.8),
0 0 20px rgba(138, 43, 226, 0.6);
}
input {
width: 90%;
padding: 8px;
margin-bottom: 10px;
border-radius: 5px;
font-size: 14px;
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 0 10px rgba(138, 43, 226, 0.8),
0 0 20px rgba(138, 43, 226, 0.6);
}
button {
width: 100%;
padding: 10px;
background-color: rgba(138, 43, 226, 0.8);
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: rgba(138, 43, 226, 0.8);
}
</style>
</head>
<body>
<div class="container">
<div class="product">
<h1 style="color: rgba(138, 43, 226, 0.8); text-shadow: 0 0 10px rgba(138, 43, 226, 0.8);">Virtual X</h1>
<input type="text" id="linkInput" placeholder="Entrez votre clé API ici...">
<button id="validateLink">Valider la clé API</button>
<div id="resultMessage"></div> <!-- Pour afficher le résultat -->
</div>
</div>
<script src="popup.js"></script>
</body>
</html>