-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfront.html
executable file
·351 lines (319 loc) · 15 KB
/
front.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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
<!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>Query_Solver</title>
<!-- additional file -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway|Open+Sans">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="./fc.css">
<script src="./action.js"></script>
</head>
<body>
<!--navbar-->
<nav class="navbar navbar-expand-lg navbar-light">
<a href="#" class="navbar-brand">
<img src="./images/M (1).png" width="45" alt="" class="d-inline-block align-middle mr-2">
<!-- Logo Text -->
<span class="text-uppercase font-weight-bold">Query_solver</span>
</a>
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collection of nav links, forms, and other content for toggling -->
<div id="navbarCollapse" class="collapse navbar-collapse justify-content-start">
<div class="navbar-nav sticky-top">
<a href="#myhome" class="nav-item nav-link">Home</a>
<a href="#myabout" class="nav-item nav-link">About</a>
<div class="nav-item dropdown">
<a href="#" data-toggle="dropdown" class="nav-item nav-link dropdown-toggle">Services</a>
<div class="dropdown-menu">
<a href="http://localhost:8080/project1/admin/login.php" class="trigger-btn text-black dropdown-item" >Admin</a>
<a href="./index.html" class="dropdown-item">Join</a>
</div>
</div>
<a href="#mycontact" class="nav-item nav-link">Contact</a>
</div>
<form class="navbar-form form-inline ml-auto">
<div class="input-group search-box">
<input type="text" class="form-control">
<div class="input-group-append">
<button type="button" class="btn btn-primary"><span>Search</span></button>
</div>
</div>
</form>
</div>
</nav>
<div id="myhome" class="container-fluid">
<!--home-->
<div class="row"><div class="video-background-holder">
<div class="video-background-overlay"></div>
<video playsinline="playsinline" autoplay="autoplay" muted="muted" loop="loop">
<source src="./images/World - 2.mp4" type="video/mp4">
</video>
<div class="video-background-content container h-100">
<div class="d-flex h-100 text-center align-items-lg-center">
<div class="w-100 text-white">
<img src="./images/logo.png" width="100" alt="" class="d-inline-block align-middle mr-2">
<!-- Logo Text -->
<figure>
<blockquote class="blockquote">
<h1 class="display-4"> <div class="font-weight-bold text-white"><span>Welcome</span> to <span>Query_solver</span> </div> </h1>
</blockquote>
<cite title="Source Title"> “Live as if you were to die tomorrow. Learn as if you were to live forever.”</cite><figcaption class="blockquote-footer text-white">
Mahatma Gandhi
</figcaption>
</figure>
<!--login-->
<button type="button" class="btn btn-primary btn-lg "><div class="text-center">
<!-- Button HTML (to Trigger Modal) -->
<a href="./login.php" class="trigger-btn text-white">Login</a>
</div></button>
<button type="button" href="#" class="btn btn-primary btn-lg"><div class="text-center">
<!-- Button HTML (to Trigger Modal) -->
<a href="./registration.php" class="trigger-btn text-white">Registration</a>
</div></button>
</div>
</div>
</div>
</div></div>
</div>
<!--About-->
<div id="myabout" class="container-fluid bg-white w-100 about">
<h1 class="display-4"> <div class="font-weight-bold text-dark text-center">About Platform </div> </h1>
<div class="row">
<div class="col-sm">
<div id="carouselExampleIndicators" class="carousel slide img-thumbnail w-100 align-items-end" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner w-100">
<div class="carousel-item active w-100">
<img class="d-block w-100" src="./images/p1 (1).jpg" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="./images/p1 (2).jpg" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="./images/p1 (3).jpg" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<div class="col-sm">
<p class="lead text-justify">Query_Solver is a video conferencing platform that can be used through a computer desktop or mobile app, and allows users to connect online for video conference meetings, webinars and live chat.
During the Covid19 crisis, Query_Solver has seen a surge in popularity, with millions of people using it to stay in touch with others.
Query_Solver mission is to share and grow the world’s knowledge. Not all knowledge can be written down, but much of that which can be, still isn't. It remains in people’s heads or only accessible if you know the right people.
We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better,
and to empower everyone to share their knowledge for the benefit of the rest of the world.</p>
</div>
</div>
</div>
<!--contact-->
<div id="mycontact" class="container-fluid">
<h1 class="display-4"> <div class="font-weight-bold text-white text-center">Contact Us </div> </h1>
<div class="row">
<div class="col-sm one w-25">
<div class="form-group">
<input type="text" class="form-control" name="username" placeholder="Full_Name" required="required">
</div>
<div class="form-group">
<input type="text" class="form-control" name="password" placeholder="Email" required="required">
</div>
<div class="form-group">
<input type="text" class="form-control" name="username" placeholder="Subject" required="required">
</div>
<div class="form-group">
<textarea class="form-control" placeholder="Message...." id="exampleFormControlTextarea1" rows="3"></textarea>
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary btn-lg btn-block login-btn">Send</button>
</div>
</form>
</div>
<div class="text">
<strong><h1 class="text bg-primary rounded text-white"> Get in touch with us</h3></strong>
<hr>
</div>
<div class="col-sm text-white">
<div class="address">
<h5>Address:</h5>
<ul class="list-unstyled">
<li>Narsingharh By pass Road</li>
<li>Near Gandhi Nagar</li>
<li>Bhopal M.P, NM +(91)-(755)-2678812</li>
</ul>
<p>Please don't send anything to this address.</p>
</div>
<div class="email">
<h5>Email:</h5>
<ul class="list-unstyled">
<li> [email protected]</li>
<!-- <li> [email protected]</li>
<li> [email protected]</li> -->
</ul>
</div>
<div class="phone">
<h5>Phone:</h5>
<ul class="list-unstyled">
<li> +91- 79749*****</li>
<!-- <li> +91- (755)-2678812</li>
<li> +91- (755)-2678819 </li> -->
</ul>
</div>
<hr>
<div class="social">
<ul class="list-inline list-unstyled">
<li class="list-inline-item">
<a href="#"><i class="fa fa-facebook-square fa-2x"></i></a>
</li>
<li class="list-inline-item">
<a href="#"><i class="fa fa-google-plus-square fa-2x"></i></a>
</li>
<li class="list-inline-item">
<a href="#"><i class="fa fa-youtube-play fa-2x"></i></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!---->
<!-- login -->
<div id="myModal" class="modal fade">
<div class="modal-dialog modal-login">
<div class="modal-content">
<div class="modal-header">
<div class="avatar">
<img src="./images/logo.png" alt="Avatar">
</div>
<h4 class="modal-title">Member Login</h4>
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<form action="./login.php" method="post">
<div class="form-group">
<?php if (isset($_GET['error'])) { ?>
<p class="error"><?php echo $_GET['error']; ?></p>
<?php } ?>
<input type="text" class="form-control" name="username" placeholder="Username" required="required">
</div>
<div class="form-group">
<input type="password" class="form-control" name="password" placeholder="Password" required="required">
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary btn-lg btn-block login-btn">Login</button>
</div>
</form>
</div>
<div class="modal-footer">
<a href="#">Forgot Password?</a>
</div>
</div>
</div>
</div>
<!-- registraion-->
<div id="myid" class="modal fade">
<div class="modal-dialog modal-login">
<div class="modal-content">
<div class="modal-header">
<div class="avatar">
<img src="./images/logo.png" alt="Avatar">
</div>
<h4 class="modal-title">Registration</h4>
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<form action="/examples/actions/confirmation.php" method="post">
<div class="form-group">
<input type="text" class="form-control" name="Fullname" placeholder="Full_Name" required="required">
</div>
<div class="form-group">
<select class="form-control" >
<option selected>Gender</option>
<option value="1">Female</option>
<option value="2">Male</option>
<option value="3">Other</option>
</select>
</div>
<div class="form-group">
<select class="form-control" >
<option selected>profession</option>
<option value="1">Teacher</option>
<option value="2">Student</option>
</select>
</div>
<div class="form-group">
<input type="number" class="form-control" name="number" placeholder="Phone_Number" required="required">
</div>
<div class="form-group">
<input type="email" class="form-control" name="email" placeholder="Email" required="required">
</div>
<div class="form-group">
<input type="password" class="form-control" name="password" placeholder="Password" required="required">
</div>
<div class="form-group">
<input type="password" class="form-control" name="Re-password" placeholder="Confirm_Password" required="required">
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary btn-lg btn-block login-btn">Submit</button>
</div>
</form>
</div>
</div>
</div>
</div>
<!---->
<!--admin login-->
<div id="myadmin" class="modal fade">
<div class="modal-dialog modal-login">
<div class="modal-content">
<div class="modal-header">
<div class="avatar">
<img src="./images/logo.png" alt="Avatar">
</div>
<h4 class="modal-title">Admin Login</h4>
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<form action="./login.php" method="post">
<div class="form-group">
<?php if (isset($_GET['error'])) { ?>
<p class="error"><?php echo $_GET['error']; ?></p>
<?php } ?>
<input type="text" class="form-control" name="username" placeholder="Username" required="required">
</div>
<div class="form-group">
<input type="password" class="form-control" name="password" placeholder="Password" required="required">
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary btn-lg btn-block login-btn">Login</button>
</div>
</form>
</div>
<div class="modal-footer">
<!-- <a href="#">Forgot Password?</a>-->
</div>
</div>
</div>
</div>
<!--admin end-->
</body>
</html>