-
Notifications
You must be signed in to change notification settings - Fork 1
/
ecell-token.html
316 lines (313 loc) · 15.7 KB
/
ecell-token.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- Primary Meta Tags -->
<title>E-Cell IIITD</title>
<meta name="title" content="E-Cell IIITD" />
<meta
name="description"
content="Entrepreneurship Cell of Indraprastha Institute of Information Technology Delhi"
/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://ecell-iiitd.netlify.app/" />
<meta property="og:title" content="E-Cell IIITD" />
<meta
property="og:description"
content="Entrepreneurship Cell of Indraprastha Institute of Information Technology Delhi"
/>
<meta property="og:image" content="./assets/logo.png" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:url"
content="https://ecell-iiitd.netlify.app/"
/>
<meta property="twitter:title" content="E-Cell IIITD" />
<meta
property="twitter:description"
content="Entrepreneurship Cell of Indraprastha Institute of Information Technology Delhi"
/>
<meta property="twitter:image" content="./assets/logo.png" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css"
rel="stylesheet"
/>
<link
href="https://unpkg.com/[email protected]/dist/aos.css"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://unpkg.com/swiper@7/swiper-bundle.min.css"
/>
<link rel="stylesheet" href="./styles.css" />
<title>Welcome to E-Cell IIITD</title>
</head>
<body class="flex flex-col min-h-screen">
<header class="header z-10">
<nav class="nav">
<div class="w-full flex justify-between">
<div class="logo-div mt-5 md:mt-10 ml-5 md:ml-20">
<a href="./index.html">
<img
src="./assets/logo.png"
alt="E-Cell IIITD"
class="h-12 w-12 rounded-full"
/>
</a>
</div>
<button
class="outline-none flex justify-center items-center"
>
<div
class="menu-icon fixed right-5 md:right-20 top-5 md:top-10 z-10 bg-black rounded-full p-3"
>
<svg class="svg-icon" viewBox="0 0 20 20">
<path
fill="none"
d="M3.314,4.8h13.372c0.41,0,0.743-0.333,0.743-0.743c0-0.41-0.333-0.743-0.743-0.743H3.314
c-0.41,0-0.743,0.333-0.743,0.743C2.571,4.467,2.904,4.8,3.314,4.8z M16.686,15.2H3.314c-0.41,0-0.743,0.333-0.743,0.743
s0.333,0.743,0.743,0.743h13.372c0.41,0,0.743-0.333,0.743-0.743S17.096,15.2,16.686,15.2z M16.686,9.257H3.314
c-0.41,0-0.743,0.333-0.743,0.743s0.333,0.743,0.743,0.743h13.372c0.41,0,0.743-0.333,0.743-0.743S17.096,9.257,16.686,9.257z"
></path>
</svg>
</div>
</button>
<div
class="nav-list hidden fixed md:space-x-4 z-10 flex md:flex-row"
>
<a href="./index.html#about" class="text-white hover:text-black"
><span
class="bg-black hover:bg-white p-2 rounded-lg transform transition duration-700 delay-50 border hover:border-black"
>About</span
></a
>
<a
href="./index.html#initiatives"
class="text-white hover:text-black"
><span
class="bg-black hover:bg-white p-2 rounded-lg transform transition duration-700 delay-50 border hover:border-black"
>Initiatives</span
></a
>
<a href="./index.html#events" class="text-white hover:text-black"
><span
class="bg-black hover:bg-white p-2 rounded-lg transform transition duration-700 delay-50 border hover:border-black"
>Events</span
></a
>
<a href="./index.html#team" class="text-white hover:text-black"
><span
class="bg-black hover:bg-white p-2 rounded-lg transform transition duration-700 delay-50 border hover:border-black"
>Team</span
></a
>
<a
href="./index.html#getintouch"
class="text-white hover:text-black"
><span
class="bg-black hover:bg-white p-2 rounded-lg transform transition duration-700 delay-50 border hover:border-black"
>Get In Touch</span
></a
>
</div>
<button
class="outline-none flex justify-center items-center"
>
<div
class="hidden close-icon fixed right-5 md:right-20 top-5 md:top-10 z-10 bg-black rounded-full p-3"
>
<svg class="svg-icon" viewBox="0 0 20 20">
<path
fill="none"
d="M11.469,10l7.08-7.08c0.406-0.406,0.406-1.064,0-1.469c-0.406-0.406-1.063-0.406-1.469,0L10,8.53l-7.081-7.08
c-0.406-0.406-1.064-0.406-1.469,0c-0.406,0.406-0.406,1.063,0,1.469L8.531,10L1.45,17.081c-0.406,0.406-0.406,1.064,0,1.469
c0.203,0.203,0.469,0.304,0.735,0.304c0.266,0,0.531-0.101,0.735-0.304L10,11.469l7.08,7.081c0.203,0.203,0.469,0.304,0.735,0.304
c0.267,0,0.532-0.101,0.735-0.304c0.406-0.406,0.406-1.064,0-1.469L11.469,10z"
></path>
</svg>
</div>
</button>
</div>
</nav>
</header>
<main class="main flex-grow">
<div class="container mx-auto">
<div class="flex justify-center">
<form name="submit-to-google-sheet" class="flex flex-col w-96">
<label for="tokenAdd">
Address
<input
type="text"
name="tokenAdd"
id="tokenAdd"
placeholder="Enter Address"
class="bg-white focus:outline-none focus:shadow-outline focus:border-black border border-gray-300 rounded py-2 px-4 block w-full appearance-none leading-normal my-5"
readonly
/>
</label>
<label for="name">
Name
<input
type="text"
name="name"
id="name"
placeholder="Enter Name"
class="bg-white focus:outline-none focus:shadow-outline focus:border-black border border-gray-300 rounded py-2 px-4 block w-full appearance-none leading-normal my-5"
/>
</label>
<label for="rollNo">
Roll No
<input
type="text"
name="rollNo"
id="rollNo"
placeholder="Enter Roll No"
class="bg-white focus:outline-none focus:shadow-outline focus:border-black border border-gray-300 rounded py-2 px-4 block w-full appearance-none leading-normal my-5"
/>
</label>
<label for="teamName">
Team Name
<input
type="text"
name="teamName"
id="teamName"
placeholder="Enter Team Name"
class="bg-white focus:outline-none focus:shadow-outline focus:border-black border border-gray-300 rounded py-2 px-4 block w-full appearance-none leading-normal my-5"
/>
</label>
<div class="mx-auto">
<button
type="submit"
class="bg-black text-white hover:bg-white hover:text-black py-2 px-4 border border-black rounded"
>
Submit
</button>
</div>
</form>
</div>
</div>
</main>
<footer class="footer bg-black text-white">
<div class="margin-space">
<!-- <div class="" style="margin: auto; max-width: 1400px;"> -->
<div class="flex flex-col justify-center w-full">
<div
class="flex flex-col md:flex-row justify-between my-10 mx-2"
>
<div class="flex flex-col w-full md:w-2/5">
<div class="logo">
<a href="#home">
<img
src="./assets/logo.png"
alt="E-Cell IIITD"
class="h-12 w-12"
/>
</a>
</div>
<br />
<div class="menu">
<div
class="nav-list-footer flex md:flex-row w-full"
>
<a href="#about" class="pr-5"
><span class="">About</span></a
>
<a href="#initiatives" class="pr-5"
><span class="">Initiatives</span></a
>
<a href="#events" class="pr-5"
><span class="">Events</span></a
>
<a href="#team" class="pr-5"
><span class="">Team</span></a
>
<a href="#getintouch" class="pr-5"
><span class="">Get In Touch</span></a
>
</div>
</div>
</div>
<div class="address flex flex-col w-full md:w-1/3 mt-5">
<div class="flex flex-row">
<div
class="address-icons flex flex-col space-y-8 mr-2"
>
<i class="fas fa-map-marker-alt"></i>
<i class="far fa-envelope"></i>
</div>
<div
class="address-text flex flex-col space-y-5 ml-2"
>
<p class="location">
E-Cell Room, Student Center, IIIT Delhi
</p>
<a href="mailto:[email protected]">
<p class="mail text-blue-500">
</p>
</a>
</div>
</div>
</div>
</div>
<div class="social-static flex text-3xl justify-around">
<a
href="https://www.instagram.com/ecell_iiitd/"
target="_blank"
><i
class="fab fa-instagram m-5 hover:text-indigo-600 rounded-lg transform transition duration-700 delay-50"
></i
></a>
<a
href="https://www.linkedin.com/company/iiitdecell"
target="_blank"
><i
class="fab fa-linkedin m-5 hover:text-blue-600 rounded-lg transform transition duration-700 delay-50"
></i
></a>
<a
href="https://twitter.com/ecell_iiitd"
target="_blank"
><i
class="fab fa-twitter m-5 hover:text-blue-400 rounded-lg transform transition duration-700 delay-50"
></i
></a>
<a
href="https://www.youtube.com/channel/UCT1NEtd64KZlr9tkJf7x-HQ"
target="_blank"
><i
class="fab fa-youtube m-5 hover:text-red-500 rounded-lg transform transition duration-700 delay-50"
></i
></a>
</div>
<div class="copyright w-full flex justify-center mb-5">
<p class="heading">
Copyright 2021 E-Cell IIITD. All rights reserved.
</p>
</div>
</div>
</div>
</footer>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script src="https://unpkg.com/swiper@7/swiper-bundle.min.js"></script>
<script src="./anime.min.js"></script>
<!-- <script src="./index.js"></script> -->
<script src="https://cdn.jsdelivr.net/npm/web3@latest/dist/web3.min.js"></script>
<script
src="https://cdn.ethers.io/lib/ethers-5.2.umd.min.js"
type="application/javascript"
></script>
<script src="./token.js"></script>
</body>
</html>