-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
37 lines (32 loc) · 1.66 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
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<link type="text/css" rel="stylesheet" href="style.css" />
<script src="solidity.utilities.min.js" type="text/javascript"></script>
<script src="web3.min.js" type="text/javascript"></script>
<script src="script.js" type="text/javascript"></script>
</head>
<body>
<header>
<aside>
<a class="SOS" href="./">🚨</a>
<input type="text" placeholder="Search by Smart Contract Address" onchange="search(this.value)" onkeyup="search(this.value)" onpaste="search(this.value)" oncut="search(this.value)" />
<a href="javascript:;" class="Validate" onclick="toggleGlobalValidate()">Validate</a>
</aside>
<div>
<p>Currently ETH Emergency mode supports Smart Contracts from the Solidity 0.5.9 | to follow the project join our <a href="https://github.com/b-u-i-d-l/eth-emergency-mode" target="_blank">Github Repo</a> and our <a href="https://discord.gg/nHZ2bUd" target="_blank">Discord Server</a></p>
</div>
</header>
<section id="validate" class="VALIDATE" style="display: none;">
<input type="text" placeholder="Smart Cpntract Address" id="address"/>
<input type="file" accept=".sol" onchange="onFileSelection(this)" />
<input type="submit" value="Submit" onclick="save(this)"/>
<span class="loaderMinimino" style="display: none;"></span>
</section>
<ul id="list">
</ul>
</body>
</html>