-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsubmitnfttoken.html
68 lines (63 loc) · 2.77 KB
/
submitnfttoken.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="./css/submitnfttoken.css">
<link rel="icon" type="image/jpg" href="./favicon.icon" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Triquetra</title>
<meta name="title" content="Triquetra" />
<meta name="author" content="Jay Rank" />
<meta name="description" content="A one-step solution to your NFTs." />
<meta property="og:type" content="website" />
<meta property="og:url" content="" />
<meta property="og:title" content="Triquetra" />
<meta property="og:description" content="A one-step solution to your NFTs." />
<meta property="og:image" content="./assets/images/TriquetraBanner.png" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="" />
<meta property="twitter:title" content="Triquetra" />
<meta property="twitter:description" content="A one-step solution to your NFTs." />
<meta property="twitter:image" content="./assets/images/TriquetraBanner.png" />
</head>
<body>
<div class="Heading">triquetra</div>
<div class="Wallet">Connect Wallet</div>
<div class="HeadingNFT">Add your new NFT.</div>
<form>
Token ID<input type="text" name="NewName" size="20">
IPFS Link<input type="text" name="IPFSLink" size="20">
Asset Contract Address<input type="text" name="Description" size="20">
</form>
<button><a href="./dashboard.html">Submit</a></button>
</body>
<!-- <script>
document.addEventListener('contextmenu', e => e.preventDefault());
document.onkeydown = function (e) {
if (e.keyCode == 123) {
alert("This function has been disabled to prevent you from stealing my code!");
return false;
}
if (e.ctrlKey && e.shiftKey && e.keyCode == 'I'.charCodeAt(0)) {
alert("This function has been disabled to prevent you from stealing my code!");
return false;
}
if (e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)) {
alert("This function has been disabled to prevent you from stealing my code!");
return false;
}
if (e.ctrlKey && e.shiftKey && e.keyCode == 'C'.charCodeAt(0)) {
alert("This function has been disabled to prevent you from stealing my code!");
return false;
}
if (e.ctrlKey && e.keyCode == 'U'.charCodeAt(0)) {
alert("This function has been disabled to prevent you from stealing my code!");
return false;
}
if (e.ctrlKey && e.keyCode == 'C'.charCodeAt(0)) {
alert("Just try being original for once!");
return false;
}
}
</script> -->
</html>