-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwarning.html
32 lines (27 loc) · 1001 Bytes
/
warning.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="favicon.ico" />
<title>Bitcoin Knots</title>
<link href="./output.css" rel="stylesheet" />
</head>
<body class="flex flex-col items-center justify-center overflow-x-hidden bg-silverSand">
<div
class="min-w-md mt-10 w-auto max-w-md flex-col items-center gap-10 rounded-sm bg-white p-10 py-16 font-bold drop-shadow-md">
<div>
<h2 class="font-manjariBold text-2xl text-sharpBlack">Warning</h2>
</div>
<p class="text-sm text-sharpBlack">
It is very easy to spoof users on Telegram! Never send someone bitcoins
based on a Telegram conversation!
</p>
<div class="mt-10">
<a href="https://t.me/Bitcoin_Knots"
class="font-manjariRegular text-sm text-sharpBlack hover:text-electricBlue">Continue to Telegram
→</a>
</div>
</div>
</body>
</html>