-
Notifications
You must be signed in to change notification settings - Fork 5
/
form2.html
36 lines (34 loc) · 1.46 KB
/
form2.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
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h2>FASTMINT - Mint from Metadata file</h2>
<form action="/url" method="POST">
<div class="form-group mb-3">
<label>Metadata file (.json)</label>
<input type="text" class="form-control" placeholder="https://ipfs.io/ipfs/bafyreia3gktjytjez7vgj4wnshdthsagh4lz2tgib4in2xiirbibziga6e/metadata.json" name="url">
</div>
<div class="form-group mb-3">
<label>Recipient Wallet Address</label>
<input type="text" class="form-control" placeholder="Enter recipient's wallet address" name="recipientAddress">
</div>
<div class="form-group mb-3">
<label>allowPlatformToOperateToken(true/false)</label>
<input type="text" class="form-control" placeholder="true" name="allowPlatformToOperateToken">
</div>
<div class="form-group mb-3">
<label>chain</label>
<input type="text" class="form-control" placeholder="goerli" name="chain">
</div>
<div class="d-grid mt-3">
<button type="submit" class="btn btn-outline-success">MINT</button>
</div>
</form>
</body>
</html>