-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (86 loc) · 2.74 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
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Acesso à Loja VIP</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #000000;
background-image: radial-gradient(#333333 1px, transparent 1px);
background-size: 20px 20px;
}
.container {
background-color: rgba(0, 0, 0, 0.8);
padding: 2rem;
border-radius: 8px;
box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
text-align: center;
color: #FFD700;
}
h2 {
font-size: 24px;
margin-bottom: 20px;
}
input, button {
display: block;
width: 100%;
margin: 15px 0;
padding: 12px;
box-sizing: border-box;
background-color: #1a1a1a;
border: 1px solid #FFD700;
color: #FFD700;
}
input::placeholder {
color: #998100;
}
button {
background-color: #FFD700;
color: #000000;
border: none;
cursor: pointer;
font-weight: bold;
transition: all 0.3s ease;
}
button:hover {
background-color: #FFF700;
}
.logo {
margin-bottom: 20px;
}
.logo img {
max-width: 200px;
height: auto;
}
</style>
</head>
<body>
<div class="container">
<div class="logo">
<img src="https://dcdn.mitiendanube.com/stores/005/129/175/themes/common/logo-1184189757-1724508865-6e5fb413e2465d7715f061432fdee80a1724508865-480-0.webp" alt="Logo da Loja VIP">
</div>
<h2>PURCHASE STORE VIP</h2>
<input type="password" id="passwordInput" placeholder="Digite a senha VIP">
<button onclick="checkPassword()">Acessar Ofertas Exclusivas</button>
</div>
<script>
function checkPassword() {
const password = document.getElementById('passwordInput').value;
const correctPassword = 'purchasevip'; // Substitua pela senha desejada
const redirectUrl = 'https://www.purchasestorevip.com.br'; // Substitua pelo URL da sua loja VIP
if (password === correctPassword) {
window.location.href = redirectUrl;
} else {
alert('Senha incorreta. Por favor, tente novamente ou entre em contato com o suporte ao cliente.');
}
}
</script>
</body>
</html>