-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (66 loc) · 2.39 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
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
<!DOCTYPE html>
<html>
<head>
<title>NFTs Minter</title>
<script src="https://cdn.jsdelivr.net/npm/web3@latest/dist/web3.min.js"></script>
<script src="https://unpkg.com/moralis/dist/moralis.js"></script>
<!-- Font Awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" rel="stylesheet"/>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet"/>
<!-- MDB -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/3.6.0/mdb.min.css" rel="stylesheet"/>
<style>
body{
text-align: center;
background-color: #04001a;
}
#app{
display: none;
margin-top: 10px;
height: 400px;
background-color: white;
padding: 20px;
border-radius: 20px;
color: #424242;
}
.form_element{
margin-top: 20px;
}
.title{
color: #fff;
margin-top: 10px;
}
#success_message{
background-color: #c4ffc4;
border: 1px solid #0fcf0f;
border-radius: 4px;
display: none;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="title">NFT Minter</div>
<div id="app" class="col-md-6 offset-md-3">
<div id="success_message">
</div>
<div class="form_element">
<input class="form-control type="text" id="input_name" name="name" placeholder="Token name">
</div>
<div class="form_element">
<input class="form-control type="text" id="input_description" name="description" placeholder="Description">
</div>
<div class="form_element">
<input class="form-control" type="file" id="input_image" name="image" accept="image/png, image/jpeg">
</div>
<div class="form_element">
<button class="btn btn-primary btn-lg btn-block" id="submit_button">Submit</button>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="./main.js"></script>
</body>
</html>