-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcreate.html
More file actions
165 lines (144 loc) · 5.95 KB
/
create.html
File metadata and controls
165 lines (144 loc) · 5.95 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="templatemo">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
<title>Liberty Template - Create NFT Page</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Additional CSS Files -->
<link rel="stylesheet" href="assets/css/fontawesome.css">
<link rel="stylesheet" href="assets/css/templatemo-liberty-market.css">
<link rel="stylesheet" href="assets/css/owl.css">
<link rel="stylesheet" href="assets/css/animate.css">
<link rel="stylesheet"href="https://unpkg.com/swiper@7/swiper-bundle.min.css"/>
<!--
TemplateMo 577 Liberty Market
https://templatemo.com/tm-577-liberty-market
-->
</head>
<body>
<!-- ***** Preloader Start ***** -->
<div id="js-preloader" class="js-preloader">
<div class="preloader-inner">
<span class="dot"></span>
<div class="dots">
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
<!-- ***** Preloader End ***** -->
<!-- ***** Header Area Start ***** -->
<header class="header-area header-sticky">
<div class="container">
<div class="row">
<div class="col-12">
<nav class="main-nav">
<!-- ***** Logo Start ***** -->
<a href="index.html" class="logo">
<img src="assets/images/logo.png" alt="">
</a>
<!-- ***** Logo End ***** -->
<!-- ***** Menu Start ***** -->
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="explore.html">Explore</a></li>
<li><a href="details.html">Item Details</a></li>
<li><a href="author.html">Author</a></li>
<li><a href="create.html" class="active">Create Yours</a></li>
</ul>
<a class='menu-trigger'>
<span>Menu</span>
</a>
<!-- ***** Menu End ***** -->
</nav>
</div>
</div>
</div>
</header>
<!-- ***** Header Area End ***** -->
<div class="item-details-page">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="section-heading">
<div class="line-dec"></div>
<h2>Apply For <em>Your Item</em> Here.</h2>
</div>
</div>
<div class="col-lg-12">
<form id="contact" action="" method="post">
<div class="row">
<div class="col-lg-4">
<fieldset>
<label for="title">Item Title</label>
<input type="title" name="title" id="title" placeholder="Ex. Lyon King" autocomplete="on" required>
</fieldset>
</div>
<div class="col-lg-4">
<fieldset>
<label for="description">Description For Item</label>
<input type="description" name="description" id="description" placeholder="Give us your idea" autocomplete="on" required>
</fieldset>
</div>
<div class="col-lg-4">
<fieldset>
<label for="username">Your Username</label>
<input type="username" name="username" id="username" placeholder="Ex. @alansmithee" autocomplete="on" required>
</fieldset>
</div>
<div class="col-lg-6">
<fieldset>
<label for="price">Price Of Item</label>
<input type="price" name="price" id="price" placeholder="Price depends on quality. Ex. 0.06 ETH" autocomplete="on" required>
</fieldset>
</div>
<div class="col-lg-6">
<fieldset>
<label for="royalities">Royalties</label>
<input type="royalities" name="royalities" id="royalities" placeholder="Common royalties 1-25%" autocomplete="on" required>
</fieldset>
</div>
<div class="col-lg-4">
<fieldset>
<label for="file">Your File</label>
<input type="file" id="file" name="myfiles[]" multiple />
</fieldset>
</div>
<div class="col-lg-8">
<fieldset>
<button type="submit" id="form-submit" class="orange-button">Submit Your Applying</button>
</fieldset>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<footer>
<div class="container">
<div class="row">
<div class="col-lg-12">
<p>Copyright © 2024 <a target="_blank" href="https://www.youtube.com/channel/UCeNYDojo4nU2sbHz1sMsBXw">Web Tech Knowledge
Designed by <a title="HTML CSS Templates" rel="sponsored" href="https://www.youtube.com/channel/UCeNYDojo4nU2sbHz1sMsBXw" target="_blank">Web Tech Knowledge</a></p>
</div>
</div>
</div>
</footer>
<!-- Scripts -->
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/js/isotope.min.js"></script>
<script src="assets/js/owl-carousel.js"></script>
<script src="assets/js/tabs.js"></script>
<script src="assets/js/popup.js"></script>
<script src="assets/js/custom.js"></script>
</body>
</html>