-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblock.html
More file actions
78 lines (70 loc) · 1.7 KB
/
block.html
File metadata and controls
78 lines (70 loc) · 1.7 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Acesso Bloqueado</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="./images/ringzero-icon.png" rel="icon">
<style>
html, body {
margin: 0;
padding: 0;
background: #f5f7fa;
font-family: 'Roboto Condensed', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
color: #333;
}
.container {
text-align: center;
max-width: 700px;
padding: 2rem;
background: white;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.logo {
width: 360px;
margin-bottom: 1rem;
}
h1 {
color: #d32f2f;
font-size: 2.2rem;
margin-bottom: 1rem;
font-family: 'Roboto Condensed', sans-serif;
}
p {
font-size: 1.3rem;
color: #444;
margin-bottom: 2.5rem;
}
.powered {
margin-top: 2rem;
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
font-size: 1rem;
color: #777;
}
.powered img {
width: 220px;
}
</style>
</head>
<body>
<div class="container">
<img src="./images/dome-logo.png" alt="Gigasafe Gateway" class="logo">
<h1>Acesso Bloqueado</h1>
<p>O conteúdo que você tentou acessar foi identificado como malicioso ou impróprio e foi bloqueado pelo nosso gateway.</p>
<div class="powered">
<a href="https://ringzero.com.br/">
<img src="./images/powered-by-ringzero.png" alt="Powered by Ring Zero Networks">
</a>
</div>
</div>
</body>
</html>