forked from Tech-Squad-Community/techsquad-community-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
registration.html
322 lines (300 loc) · 12 KB
/
registration.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
317
318
319
320
321
322
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Registration</title>
<!-- Preloader -->
<link rel="stylesheet" href="./css/UpEvent.css">
<link rel="stylesheet" href="./css/styles.css" />
<!--Preloading the CSS files to this page-->
<script src="./JS/script.js"></script>
<!--Preloading the JS files to this page-->
<!-- Favicon -->
<link rel="icon" href="assets/img/brand/ts2022.png" type="image/png" />
<!-- Font Awesome -->
<link rel="stylesheet" href="assets/libs/@fortawesome/fontawesome-free/css/all.min.css" />
<!-- Quick CSS -->
<link rel="stylesheet" href="assets/css/quick-website.css" id="stylesheet" />
<link rel="stylesheet" href="./assets/css/regis.css" />
</head>
<body>
<!-- Preloader -->
<div class="preloader">
<div class="spinner-border text-primary" role="status">
<span class="sr-only">Loading...</span>
</div>
</div>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-white">
<div class="container">
<!-- Brand -->
<a class="float client col-3 py-3" href="index.html">
<img
alt="Image placeholder"
src="assets/img/brand/ts2022_trans.svg"
id="navbar-logo"
style="max-width: 70%"
/>
</a>
<!-- Toggler -->
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarCollapse"
aria-controls="navbarCollapse"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collapse -->
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav mt-4 mt-lg-0 ml-auto">
<li class="nav-item">
<a class="nav-link" href="./Resource.html">Resources</a>
</li>
<li class="nav-item dropdown dropdown-animate" data-toggle="hover">
<a
class="nav-link"
href="#"
role="button"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
>Pages</a
>
<div class="dropdown-menu dropdown-menu-single">
<a href="index.html" class="dropdown-item">Homepage</a>
<a href="about.html" class="dropdown-item">About us</a>
<a href="contact.html" class="dropdown-item">Contact</a>
<div class="dropdown-divider"></div>
<a href="login.html" class="dropdown-item">Login</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Blogs</a>
</li>
</ul>
<!-- Button -->
<a
class="navbar-btn btn btn-sm btn-primary d-none d-lg-inline-block ml-3"
href="upevent.html"
>
Upcoming Event
</a>
<!-- Mobile button -->
<div class="d-lg-none text-center">
<a href="upevent.html" class="btn btn-block btn-sm btn-warning"
>Upcoming Event</a
>
</div>
</div>
</div>
</nav>
<br/><br/><br/><br/><br/><br/>
<!-- Main Content -->
<section class="vh-100">
<div class="container py-5 h-100">
<div class="row d-flex align-items-center justify-content-center h-100">
<div class="col-md-8 col-lg-7 col-xl-6">
<img src="https://mdbcdn.b-cdn.net/img/Photos/new-templates/bootstrap-login-form/draw2.svg" class="img-fluid" alt="Phone image">
</div>
<div class="col-md-7 col-lg-5 col-xl-5 offset-xl-1">
<form>
<!-- Name input -->
<div class="form-outline mb-4">
<input type="text" id="form1Example13" class="form-control form-control-lg" />
<label class="form-label" for="form1Example13">Name</label>
</div>
<!-- Email input -->
<div class="form-outline mb-4">
<input type="email" id="form1Example23" class="form-control form-control-lg" />
<label class="form-label" for="form1Example23">Email</label>
</div>
<!-- Password input -->
<div class="form-outline mb-4">
<input type="password" id="form1Example13" class="form-control form-control-lg" />
<label class="form-label" for="form1Example13">Password</label>
</div>
<!-- Confirm Password input -->
<div class="form-outline mb-4">
<input type="password" id="form1Example13" class="form-control form-control-lg" />
<label class="form-label" for="form1Example13">Confirm Password</label>
</div>
<!-- Submit button -->
<button type="submit" class="btn btn-primary btn-lg btn-block">Sign Up</button>
<div class="divider d-flex align-items-center my-4">
<p class="text-center fw-bold mx-3 mb-0 text-muted">OR</p>
</div>
<div class="btn-toolbar" role="toolbar" aria-label="Toolbar with button groups">
<!-- Google button -->
<div class="btn-group mr-2" role="group" aria-label="First group">
<!-- Google button -->
<a class="btn btn-primary btn-lg btn-block" style="background-color: #F4B400;border-color: #F4B400;" href="#!" role="button">
Register with Google
</a>
</div>
<!-- Github button -->
<div class="btn-group mr-2" role="group" aria-label="First group">
<a class="btn btn-primary btn-lg btn-block" style="background-color: #333" href="#!" role="button">
Register with Github
</a>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<br/><br/><br/><br/><br/><br/>
<footer class="position-relative" id="footer-main">
<div class="footer pt-lg-7 footer-dark bg-dark">
<!-- SVG shape -->
<div
class="shape-container shape-line shape-position-top shape-orientation-inverse"
>
<svg
width="2560px"
height="100px"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
preserveAspectRatio="none"
x="0px"
y="0px"
viewBox="0 0 2560 100"
style="enable-background: new 0 0 2560 100"
xml:space="preserve"
class="fill-section-secondary"
>
<polygon points="2560 0 2560 100 0 100"></polygon>
</svg>
</div>
<!-- Footer -->
<div class="container pt-4">
<div class="row">
<div class="col-lg-4 mb-5 mb-lg-0">
<!-- Webpixels' mission -->
<p class="mt-4 text-sm opacity-8 pr-lg-4">
TechSquad Community attempts to bring the best development
experience to designers and developers by offering the tools
needed for having a quick and solid start in Programming Career.
</p>
<!-- Social -->
<ul class="nav mt-4">
<li class="nav-item">
<a
class="nav-link pl-0"
href="https://www.linkedin.com/company/78712349"
target="_blank"
>
<i class="fab fa-linkedin"></i>
</a>
</li>
<li class="nav-item">
<a
class="nav-link"
href="https://github.com/Tech-Squad-Community"
target="_blank"
>
<i class="fab fa-github"></i>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#" target="_blank">
<i class="fab fa-discord"></i>
</a>
</li>
</ul>
</div>
<div class="col-lg-2 col-6 col-sm-4 ml-lg-auto mb-5 mb-lg-0">
<h6 class="heading mb-3">Account</h6>
<ul class="list-unstyled">
<li><a href="#">Profile</a></li>
<li><a href="#">Settings</a></li>
<li><a href="#">Billing</a></li>
<li><a href="#">Notifications</a></li>
</ul>
</div>
<div class="col-lg-2 col-6 col-sm-4 mb-5 mb-lg-0">
<h6 class="heading mb-3">About</h6>
<ul class="list-unstyled">
<li><a href="#">Services</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Careers</a></li>
</ul>
</div>
<div class="col-lg-2 col-6 col-sm-4 mb-5 mb-lg-0">
<h6 class="heading mb-3">Company</h6>
<ul class="list-unstyled">
<li><a href="#">Community</a></li>
<li><a href="#">Help center</a></li>
<li><a href="#">Support</a></li>
</ul>
</div>
</div>
<hr class="divider divider-fade divider-dark my-4" />
<div class="row align-items-center justify-content-md-between pb-4">
<div class="col-md-6">
<div
class="copyright text-sm font-weight-bold text-center text-md-left"
>
© 2022
<a
href="https://techsquadcommunity.tech"
class="font-weight-bold"
target="_blank"
>TechSquad Community</a
>. All rights reserved
</div>
</div>
<div class="col-md-6">
<ul
class="nav justify-content-center justify-content-md-end mt-3 mt-md-0"
>
<li class="nav-item">
<a class="nav-link" href="#"> Terms </a>
</li>
<li class="nav-item">
<a class="nav-link" href="#"> Privacy </a>
</li>
<li class="nav-item">
<a class="nav-link" href="#"> Cookies </a>
</li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<!--scroll to top button-->
<div id="navtbut" class="disappear">
<a href="#top" id="back-top">
<img
class="buttonclass"
src="http://chikmagalurdiocese.com/icon-256x256.png"
/>
</a>
</div>
<!-- Core JS -->
<script src="assets/libs/jquery/dist/jquery.min.js"></script>
<script src="assets/libs/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="assets/libs/svg-injector/dist/svg-injector.min.js"></script>
<script src="assets/libs/feather-icons/dist/feather.min.js"></script>
<!-- Quick JS -->
<script src="assets/js/quick-website.js"></script>
<!-- Feather Icons -->
<script src="./JS/featherScript.js"></script>
<!--scroll to top button-->
<script src="./JS/navTop.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/vanilla-tilt/1.7.2/vanilla-tilt.min.js"
integrity="sha512-K9tDZvc8nQXR1DMuT97sct9f40dilGp97vx7EXjswJA+/mKqJZ8vcZLifZDP+9t08osMLuiIjd4jZ0SM011Q+w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
</body>
</html>