-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathICO_Details.html
161 lines (161 loc) · 5.46 KB
/
ICO_Details.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
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
<!Doctype html>
<head>
<title>ICO Details</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="page-header">
<div class="row">
<img class="navbar-brand" src="logo.png" alt="logo" width="25%" height="25%">
</div>
</div>
<div class="container">
<h2>ICO Details</h2>
<p><span class="glyphicon glyphicon-bitcoin"></span></p>
<form action="team.html">
<div class="form-group">
<label for="ICOname">ICO Name:</label>
<input type="text" class="form-control" id="ICOname" required>
</div>
<div class="form-group">
<label for="ico_category">ICO Category</label>
<select class="form-control" id="ico_category" required>
<option selected>Select ICO Category</option>
<option>#</option>
<option>#</option>
<option>#</option>
<option>#</option>
<option>#</option>
</select>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<div class="custom-file">
<input type="file" class="custom-file-input" id="logo" required>
<label class="custom-file-label" for="logo">Choose logo</label>
</div>
</div>
<div class="form-group col-md-6">
<div class="custom-file">
<input type="file" class="custom-file-input" id="icon" required>
<label class="custom-file-label" for="icon">Choose Icon</label>
</div>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label for="abt_ico">About ICO:</label>
<textarea class="form-control" rows="2" id="abt_ico" required></textarea>
</div>
<div class="form-group col-md-6">
<label for="description">Description:</label>
<textarea class="form-control" rows="2" id="description" required></textarea>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label for="token_distribution">Token Distribution:</label>
<textarea class="form-control" rows="2" id="token_distribution" required></textarea>
</div>
<div class="form-group col-md-6">
<label for="ico_period">ICO Period:</label>
<textarea class="form-control" rows="2" id="ico_period" required></textarea>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label for="start">Start Date:</label>
<input type="Date" id="start" required>
</div>
<div class="form-group col-md-6">
<label for="end">End Date:</label>
<input type="date" id="end" required>
</div>
</div>
<div class="form-check">
<div class="form-check-inline">
<label class="form-check-label">
<input type="checkbox" class="form-check-input" value="">Pre Sale
</label>
</div>
<div class="form-check-inline">
<label class="form-check-label">
<input type="checkbox" class="form-check-input" value="">Within Period
</label>
</div>
</div>
<div class="form-group">
<label for="goal">Goal:</label>
<input type="text" class="form-control" id="goal" required>
</div>
<div class="form-group">
<label for="cp">Cap:</label>
<input type="text" class="form-control" id="cp" required>
</div>
<div class="form-group">
<label for="Used">Used Blockchain:</label>
<input type="text" class="form-control" id="Used" placeholder="Ethereum,Omni,Building a new, other"/>
</div>
<div class="form-group">
<label for="smart">Smart contract eth address:</label>
<input type="text" class="form-control" id="smart" placeholder="Important for better ICO Ranking. Example:0x0b1ae337a9d0f62c9026ffcfdcee442e3ce31e6"/>
</div>
<div class="form-group">
<label for="token">Token Symbol:</label>
<input type="text" class="form-control" id="token"/>
</div>
<div class="form-group">
<label for="price">Price of token:</label>
<input type="text" class="form-control" id="price"/>
</div>
<div class="form-group">
<label for="KYC">KYC required for your ICO:</label>
<div class="form-check-inline">
<label class="form-check-label">
<input type="radio" class="form-check-input" name="optradio">Yes
</label>
</div>
<div class="form-check-inline">
<label class="form-check-label">
<input type="radio" class="form-check-input" name="optradio">No
</label>
</div>
<div class="form-group">
<label for="restrict">Restricted Countries to participate</label>
<select multiple class="form-control" id="restrict">
<option>USA</option>
<option>China</option>
<option>Japan</option>
<option>Pakistan</option>
<option>France</option>
</select>
</div>
<div class="form-group">
<label for="web">Website Link:</label>
<input type="text" class="form-control" id="web"/>
</div>
<div class="form-group">
<label for="bounty">Bounty Link:</label>
<input type="text" class="form-control" id="bounty"/>
</div>
<div class="form-group">
<label for="Air">Airdrop Link:</label>
<input type="text" class="form-control" id="Air"/>
</div>
<div class="form-group">
<label for="price">Link to MVP or prototype:</label>
<input type="text" class="form-control" id="price"/>
</div>
<div class="form-group">
<label for="white">Link to Whitepaper:</label>
<input type="text" class="form-control" id="white"/>
</div>
<button type="ADD" class="btn btn-primary" onclick="">Add More ICO</button><br/>
<div id="addmore"></div>
<center><button type="next" class="btn btn-success btn-lg">Next</button></center>
</form>
</div>
</body>
</html>