-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.html
34 lines (33 loc) · 1.59 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dappreader</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
<script>
let logo = `
_____ _____ _
| __ \\ | __ \\ | |
| | | | __ _ _ __ _ __ | |__) |___ __ _ __| | ___ _ __
| | | |/ _\' | \'_ \\| \'_ \\| _ // _ \\/ _\' |/ _\' |/ _ \\ \'__|
| |__| | (_| | |_) | |_) | | \\ \\ __/ (_| | (_| | __/ |
|_____/ \\__,_| .__/| .__/|_| \\_\\___|\\__,_|\\__,_|\\___|_|
| | | |
|_| |_|
`
console.log(logo)
console.log('%c安全警告!', 'color: #F43658;font-size: 28px;font-weight: bold;');
console.log('%c请不要删除Localstorage和IndexDb内容,否则所有本地合约都会消失。', 'font-size: 16px;text-decoration: underline;');
console.log('%cSecurity Warning!', 'color: #F43658;font-size: 28px;font-weight: bold;');
console.log('%cPlease do not delete LocalStorage and IndexDb content, otherwise all local contracts will be lost.', 'font-size: 16px;text-decoration: underline;');
</script>
<!-- Cloudflare Web Analytics -->
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "3c4bb559a0314882842735aa1099acef"}'></script>
<!-- End Cloudflare Web Analytics -->
</html>