-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy-profile.php
493 lines (412 loc) · 24.7 KB
/
my-profile.php
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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
<?php
require "config/global.php";
if (!isset($_SESSION['user_id'])) {
header("Location: login.php");
exit;
}
?>
<!DOCTYPE html>
<html lang="zxx">
<head>
<title><?=page_title("My-Profile"); ?></title>
<?php
include("include/head.php");
?>
</head>
<body class="blue-skin">
<!-- ============================================================== -->
<!-- Preloader - style you can find in spinners.css -->
<!-- ============================================================== -->
<!-- <div id="preloader">
<div class="preloader"><span></span><span></span></div>
</div> -->
<!-- ============================================================== -->
<!-- Main wrapper - style you can find in pages.scss -->
<!-- ============================================================== -->
<div id="main-wrapper">
<!-- ============================================================== -->
<!-- Top header -->
<!-- ============================================================== -->
<?php
include("include/header.php");
?>
<!-- ============================ Page Title Start================================== -->
<?php
include("include/page-components/my-account-header.php");
?>
<!-- ============================ Page Title End ================================== -->
<!-- ============================ User Dashboard ================================== -->
<section class="bg-light">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="filter_search_opt">
<a href="javascript:void(0);" onclick="openFilterSearch()" class="btn btn-dark full-width mb-4">Dashboard Navigation<i class="fa-solid fa-bars ms-2"></i></a>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-12">
<div class="simple-sidebar sm-sidebar" id="filter_search">
<?php
include("include/page-components/my-account-sidebar.php");
?>
</div>
</div>
<div class="col-lg-9 col-md-12">
<div class="dashboard-wraper">
<!-- Basic Information -->
<!-- Basic Information -->
<?php
$msg = '';
if (isset($_SESSION['user_id'])) {
$user_id = $_SESSION['user_id'];
$query = $db->query("SELECT * FROM users WHERE id='$user_id'");
$user = mysqli_fetch_assoc($query);
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$full_name = htmlspecialchars(trim($_POST['full_name']));
$email = filter_var($_POST['email'], FILTER_SANITIZE_EMAIL);
$username = htmlspecialchars(trim($_POST['username']));
$phone = htmlspecialchars(trim($_POST['phone']));
$address = htmlspecialchars(trim($_POST['address']));
$city = htmlspecialchars(trim($_POST['city']));
$state = htmlspecialchars(trim($_POST['state']));
$zip = htmlspecialchars(trim($_POST['zip']));
$about = htmlspecialchars(trim($_POST['about']));
$updated_at = date('Y-m-d H:i:s');
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
$msg = "<div class='alert alert-danger'>Invalid email format.</div>";
} else {
$stmt = $db->prepare("UPDATE users SET fname=?, name=?, phone=?, email=?, adress=?, city=?, state=?, zip=?, about=?, updated_at=? WHERE id=?");
if ($stmt === false) {
$msg = "<div class='alert alert-danger'>Error preparing query: " . $db->error . "</div>";
} else {
$stmt->bind_param("ssssssssssi", $full_name, $username, $phone, $email, $address, $city, $state, $zip, $about, $updated_at, $user_id);
if ($stmt->execute()) {
$msg = "<div class='alert alert-success'>Account updated successfully.<a href='my-profile.php'> View Updated Profile</a></div>";
} else {
$msg = "<div class='alert alert-danger'>Error updating user data: " . $stmt->error . "</div>";
}
$stmt->close();
}
}
}
}
?>
<?= $msg ?>
<form method="post" action="">
<div class="form-submit">
<h4>My Account</h4>
<div class="submit-section">
<div class="row">
<div class="form-group col-md-6">
<label>Your Name</label>
<input type="text" class="form-control" name="full_name" value="<?= htmlspecialchars($user['fname']) ?>">
</div>
<div class="form-group col-md-6">
<label>Email</label>
<input type="email" class="form-control" name="email" value="<?= htmlspecialchars($user['email']) ?>">
</div>
<div class="form-group col-md-6">
<label>Username</label>
<input type="text" class="form-control" name="username" value="<?= htmlspecialchars($user['name']) ?>">
</div>
<div class="form-group col-md-6">
<label>Phone</label>
<input type="text" class="form-control" name="phone" value="<?= htmlspecialchars($user['phone']) ?>">
</div>
<div class="form-group col-md-6">
<label>Address</label>
<input type="text" class="form-control" name="address" value="<?= htmlspecialchars($user['adress']) ?>">
</div>
<div class="form-group col-md-6">
<label>City</label>
<input type="text" class="form-control" name="city" value="<?= htmlspecialchars($user['city']) ?>">
</div>
<div class="form-group col-md-6">
<label>State</label>
<input type="text" class="form-control" name="state" value="<?= htmlspecialchars($user['state']) ?>">
</div>
<div class="form-group col-md-6">
<label>Zip</label>
<input type="text" class="form-control" name="zip" value="<?= htmlspecialchars($user['zip']) ?>">
</div>
<div class="form-group col-md-12">
<label>About</label>
<textarea class="form-control" name="about"><?= htmlspecialchars($user['about']) ?></textarea>
</div>
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary px-5 rounded">Save Changes</button>
</div>
</div>
</div>
</form>
<div class="form-submit" style="display:none;">
<h4>Social Accounts</h4>
<div class="submit-section">
<div class="row">
<div class="form-group col-md-6">
<label>Facebook</label>
<input type="text" class="form-control" value="https://facebook.com/">
</div>
<div class="form-group col-md-6">
<label>Twitter</label>
<input type="email" class="form-control" value="https://twitter.com/">
</div>
<div class="form-group col-md-6">
<label>Google Plus</label>
<input type="text" class="form-control" value="https://googleplus.com/">
</div>
<div class="form-group col-md-6">
<label>LinkedIn</label>
<input type="text" class="form-control" value="https://linkedin.com/">
</div>
<div class="form-group col-lg-12 col-md-12">
<button class="btn btn-primary px-5 rounded" type="submit">Save Changes</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ============================ User Dashboard End ================================== -->
<!-- ============================ Call To Action ================================== -->
<section class="theme-bg call-to-act-wrap">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="call-to-act">
<div class="call-to-act-head">
<h3>Want to Become a Real Estate Agent?</h3>
<span>We'll help you to grow your career and growth.</span>
</div>
<a href="#" class="btn btn-call-to-act">SignUp Today</a>
</div>
</div>
</div>
</div>
</section>
<!-- ============================ Call To Action End ================================== -->
<!-- ============================ Footer Start ================================== -->
<footer class="dark-footer skin-dark-footer">
<div>
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-4">
<div class="footer-widget">
<a class="nav-footer-logo" href="index-2.html">
<span class="svg-icon text-light svg-icon-2hx">
<svg width="65" height="65" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.8797 15.375C15.9797 15.075 15.9797 14.775 15.9797 14.475C15.9797 13.775 15.7797 13.075 15.4797 12.475C14.7797 11.275 13.4797 10.475 11.9797 10.475C11.7797 10.475 11.5797 10.475 11.3797 10.575C7.37971 11.075 4.67971 14.575 2.57971 18.075L10.8797 3.675C11.3797 2.775 12.5797 2.775 13.0797 3.675C13.1797 3.875 13.2797 3.975 13.3797 4.175C15.2797 7.575 16.9797 11.675 15.8797 15.375Z" fill="currentColor"/>
<path opacity="0.3" d="M20.6797 20.6749C16.7797 20.6749 12.3797 20.275 9.57972 17.575C10.2797 18.075 11.0797 18.375 11.9797 18.375C13.4797 18.375 14.7797 17.5749 15.4797 16.2749C15.6797 15.9749 15.7797 15.675 15.7797 15.375V15.2749C16.8797 11.5749 15.2797 7.47495 13.2797 4.07495L21.6797 18.6749C22.2797 19.5749 21.6797 20.6749 20.6797 20.6749ZM8.67972 18.6749C8.17972 17.8749 7.97972 16.975 7.77972 15.975C7.37972 13.575 8.67972 10.775 11.3797 10.375C7.37972 10.875 4.67972 14.375 2.57972 17.875C2.47972 18.075 2.27972 18.375 2.17972 18.575C1.67972 19.475 2.27972 20.475 3.27972 20.475H10.3797C9.67972 20.175 9.07972 19.3749 8.67972 18.6749Z" fill="currentColor"/>
</svg>
</span><h5 class="fs-2 fw-bold text-light ms-1 my-0">Resido</h5>
</a>
<div class="footer-add">
<p>Collins Street West, Victoria 8007, Australia.</p>
<p>+1 246-345-0695</p>
<p>[email protected]</p>
</div>
</div>
</div>
<div class="col-lg-2 col-md-4">
<div class="footer-widget">
<h4 class="widget-title">Navigations</h4>
<ul class="footer-menu">
<li><a href="about-us.html">About Us</a></li>
<li><a href="faq.html">FAQs Page</a></li>
<li><a href="checkout.html">Checkout</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</div>
</div>
<div class="col-lg-2 col-md-4">
<div class="footer-widget">
<h4 class="widget-title">The Highlights</h4>
<ul class="footer-menu">
<li><a href="#">Apartment</a></li>
<li><a href="#">My Houses</a></li>
<li><a href="#">Restaurant</a></li>
<li><a href="#">Nightlife</a></li>
<li><a href="#">Villas</a></li>
</ul>
</div>
</div>
<div class="col-lg-2 col-md-6">
<div class="footer-widget">
<h4 class="widget-title">My Account</h4>
<ul class="footer-menu">
<li><a href="#">My Profile</a></li>
<li><a href="#">My account</a></li>
<li><a href="#">My Property</a></li>
<li><a href="#">Favorites</a></li>
<li><a href="#">Cart</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-6">
<div class="footer-widget">
<h4 class="widget-title">Download Apps</h4>
<a href="#" class="other-store-link">
<div class="other-store-app">
<div class="os-app-icon">
<span class="svg-icon text-light svg-icon-2hx">
<svg width="38" height="38" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.335 8.61499C3.98049 8.61579 3.64078 8.75725 3.39048 9.0083C3.14018 9.25935 2.99973 9.59947 3 9.95398V15.307C3 15.6611 3.14065 16.0006 3.39101 16.251C3.64138 16.5013 3.98094 16.642 4.335 16.642C4.68907 16.642 5.02863 16.5013 5.27899 16.251C5.52935 16.0006 5.67 15.6611 5.67 15.307V9.95398C5.67027 9.59947 5.52983 9.25935 5.27953 9.0083C5.02922 8.75725 4.68952 8.61579 4.335 8.61499ZM20.353 8.61499C19.9986 8.61579 19.659 8.75734 19.4088 9.00842C19.1587 9.25951 19.0185 9.59956 19.019 9.95398V15.307C19.0141 15.4853 19.045 15.6628 19.1099 15.829C19.1748 15.9952 19.2723 16.1467 19.3967 16.2745C19.5211 16.4024 19.6699 16.504 19.8342 16.5734C19.9985 16.6428 20.1751 16.6786 20.3535 16.6786C20.5319 16.6786 20.7085 16.6428 20.8728 16.5734C21.0371 16.504 21.1859 16.4024 21.3103 16.2745C21.4347 16.1467 21.5322 15.9952 21.5971 15.829C21.662 15.6628 21.6929 15.4853 21.688 15.307V9.95398C21.6883 9.59947 21.5478 9.25935 21.2975 9.0083C21.0472 8.75725 20.7075 8.61579 20.353 8.61499Z" fill="currentColor"/>
<path d="M8.33899 18.062V20.662C8.33899 21.0161 8.47964 21.3556 8.73 21.606C8.98036 21.8563 9.31993 21.9969 9.67399 21.9969C10.0281 21.9969 10.3676 21.8563 10.618 21.606C10.8683 21.3556 11.009 21.0161 11.009 20.662V18.062H8.33899Z" fill="currentColor"/>
<path opacity="0.3" d="M16.344 18.062C16.6984 18.0615 17.0381 17.9202 17.2885 17.6693C17.5388 17.4184 17.6793 17.0784 17.679 16.724V8.69299H7.004V16.724C7.00373 17.0784 7.1442 17.4184 7.39454 17.6693C7.64487 17.9202 7.98458 18.0615 8.339 18.062H16.344Z" fill="currentColor"/>
<path d="M13.679 18.062V20.662C13.679 21.0161 13.8196 21.3556 14.07 21.606C14.3204 21.8563 14.6599 21.9969 15.014 21.9969C15.368 21.9969 15.7076 21.8563 15.958 21.606C16.2083 21.3556 16.349 21.0161 16.349 20.662V18.062H13.679Z" fill="currentColor"/>
<path d="M15.676 4.53889L16.864 3.09492C16.9209 3.02747 16.9639 2.94945 16.9904 2.8653C17.017 2.78115 17.0266 2.69257 17.0187 2.60468C17.0109 2.51679 16.9857 2.43131 16.9446 2.35322C16.9035 2.27512 16.8474 2.206 16.7794 2.14973C16.7115 2.09345 16.633 2.05112 16.5486 2.02534C16.4642 1.99955 16.3756 1.99079 16.2878 1.99946C16.2 2.00813 16.1147 2.03408 16.037 2.07587C15.9593 2.11767 15.8906 2.17451 15.835 2.24299L14.535 3.82099C13.8435 3.50074 13.0902 3.33617 12.3282 3.33893C11.5662 3.3417 10.8141 3.51173 10.125 3.83698L8.85999 2.2519C8.80503 2.18348 8.73714 2.1266 8.66018 2.08442C8.58322 2.04224 8.49871 2.01569 8.41147 2.00617C8.32423 1.99665 8.23597 2.00441 8.15173 2.029C8.06748 2.05359 7.98891 2.09452 7.92049 2.14948C7.85207 2.20444 7.79515 2.27235 7.75297 2.34931C7.71079 2.42627 7.68418 2.51073 7.67466 2.59797C7.66515 2.68521 7.6729 2.77349 7.69749 2.85773C7.72209 2.94198 7.76303 3.02052 7.81799 3.08893L8.98999 4.55793C8.37138 5.05535 7.87187 5.68486 7.52806 6.40034C7.18426 7.11581 7.00485 7.89915 7.00299 8.69294H17.684C17.6821 7.8943 17.5006 7.10632 17.1531 6.38727C16.8055 5.66823 16.3007 5.03648 15.676 4.53889ZM10.676 7.34699C10.4782 7.34699 10.2849 7.28829 10.1204 7.17841C9.95597 7.06853 9.8278 6.91241 9.75211 6.72968C9.67642 6.54696 9.65662 6.34578 9.69521 6.1518C9.73379 5.95782 9.82903 5.77969 9.96888 5.63984C10.1087 5.49998 10.2869 5.40474 10.4809 5.36616C10.6749 5.32757 10.8759 5.34735 11.0587 5.42304C11.2414 5.49873 11.3976 5.62688 11.5075 5.79133C11.6173 5.95578 11.676 6.14921 11.676 6.34699C11.676 6.61221 11.5706 6.86649 11.3831 7.05402C11.1956 7.24156 10.9412 7.34699 10.676 7.34699ZM14.005 7.34699C13.8072 7.34699 13.6139 7.28829 13.4494 7.17841C13.285 7.06853 13.1568 6.91241 13.0811 6.72968C13.0054 6.54696 12.9856 6.34578 13.0242 6.1518C13.0628 5.95782 13.158 5.77969 13.2979 5.63984C13.4377 5.49998 13.6159 5.40474 13.8099 5.36616C14.0039 5.32757 14.2049 5.34735 14.3877 5.42304C14.5704 5.49873 14.7266 5.62688 14.8365 5.79133C14.9463 5.95578 15.005 6.14921 15.005 6.34699C15.005 6.61221 14.8996 6.86649 14.7121 7.05402C14.5246 7.24156 14.2702 7.34699 14.005 7.34699Z" fill="currentColor"/>
</svg>
</span>
</div>
<div class="os-app-caps">
Google Play
<span>Get It Now</span>
</div>
</div>
</a>
<a href="#" class="other-store-link">
<div class="other-store-app">
<div class="os-app-icon">
<span class="svg-icon text-light svg-icon-2hx">
<svg width="38" height="38" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.0082 5.05202C15.5082 4.45202 15.9082 3.65207 16.0082 2.85207C16.1082 2.25207 15.5082 1.85202 15.0082 2.05202C14.2082 2.35202 13.5082 2.85205 12.9082 3.45205C12.4082 4.05205 12.0082 4.8521 11.9082 5.7521C11.9082 6.2521 12.4082 6.65205 12.8082 6.45205C13.7082 6.35205 14.5082 5.75202 15.0082 5.05202Z" fill="currentColor"/>
<path opacity="0.3" d="M18.4082 10.0519C18.8082 9.65195 18.8082 8.95195 18.3082 8.55195C17.6082 8.05195 16.8082 7.65195 15.9082 7.55195C14.6082 7.45195 13.5082 8.35199 12.2082 8.35199C11.0082 8.35199 10.1082 7.55195 8.70818 7.55195C7.30818 7.55195 5.80818 8.45197 4.80818 9.95197C3.50818 12.052 3.70818 15.952 5.90818 19.352C6.70818 20.552 7.70818 21.852 9.10818 21.952C10.3082 21.952 10.7082 21.152 12.3082 21.152C13.9082 21.152 14.3082 21.952 15.5082 21.952C16.9082 21.952 18.0082 20.452 18.7082 19.252C19.1082 18.652 19.3082 18.352 19.5082 17.852C19.7082 17.452 19.5082 16.852 19.1082 16.652C16.8082 15.052 16.5082 11.8519 18.4082 10.0519Z" fill="currentColor"/>
</svg>
</span>
</div>
<div class="os-app-caps">
App Store
<span>Now it Available</span>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 col-md-6">
<p class="mb-0">© 2023 Resido. Designd By <a href="https://themezhub.com/">Themez Hub</a> All Rights Reserved</p>
</div>
<div class="col-lg-6 col-md-6 text-right">
<ul class="footer-bottom-social">
<li><a href="#"><i class="fa-brands fa-facebook"></i></a></li>
<li><a href="#"><i class="fa-brands fa-twitter"></i></a></li>
<li><a href="#"><i class="fa-brands fa-instagram"></i></a></li>
<li><a href="#"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<!-- ============================ Footer End ================================== -->
<!-- Log In Modal -->
<div class="modal fade" id="login" tabindex="-1" role="dialog" aria-labelledby="registermodal" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered login-pop-form" role="document">
<div class="modal-content" id="registermodal">
<span class="mod-close" data-bs-dismiss="modal" aria-hidden="true">
<span class="svg-icon text-primary svg-icon-2hx">
<svg width="32" height="32" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect opacity="0.3" x="2" y="2" width="20" height="20" rx="10" fill="currentColor"/>
<rect x="7" y="15.3137" width="12" height="2" rx="1" transform="rotate(-45 7 15.3137)" fill="currentColor"/>
<rect x="8.41422" y="7" width="12" height="2" rx="1" transform="rotate(45 8.41422 7)" fill="currentColor"/>
</svg>
</span>
</span>
<div class="modal-body">
<h4 class="modal-header-title">Log In</h4>
<div class="d-flex align-items-center justify-content-center mb-3">
<span class="svg-icon text-primary svg-icon-2hx">
<svg width="80" height="80" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15.8797 15.375C15.9797 15.075 15.9797 14.775 15.9797 14.475C15.9797 13.775 15.7797 13.075 15.4797 12.475C14.7797 11.275 13.4797 10.475 11.9797 10.475C11.7797 10.475 11.5797 10.475 11.3797 10.575C7.37971 11.075 4.67971 14.575 2.57971 18.075L10.8797 3.675C11.3797 2.775 12.5797 2.775 13.0797 3.675C13.1797 3.875 13.2797 3.975 13.3797 4.175C15.2797 7.575 16.9797 11.675 15.8797 15.375Z" fill="currentColor"/>
<path opacity="0.3" d="M20.6797 20.6749C16.7797 20.6749 12.3797 20.275 9.57972 17.575C10.2797 18.075 11.0797 18.375 11.9797 18.375C13.4797 18.375 14.7797 17.5749 15.4797 16.2749C15.6797 15.9749 15.7797 15.675 15.7797 15.375V15.2749C16.8797 11.5749 15.2797 7.47495 13.2797 4.07495L21.6797 18.6749C22.2797 19.5749 21.6797 20.6749 20.6797 20.6749ZM8.67972 18.6749C8.17972 17.8749 7.97972 16.975 7.77972 15.975C7.37972 13.575 8.67972 10.775 11.3797 10.375C7.37972 10.875 4.67972 14.375 2.57972 17.875C2.47972 18.075 2.27972 18.375 2.17972 18.575C1.67972 19.475 2.27972 20.475 3.27972 20.475H10.3797C9.67972 20.175 9.07972 19.3749 8.67972 18.6749Z" fill="currentColor"/>
</svg>
</span>
</div>
<div class="login-form">
<form>
<div class="form-floating mb-3">
<input type="email" class="form-control" placeholder="[email protected]">
<label>Email address</label>
</div>
<div class="form-floating mb-3">
<input type="password" class="form-control" placeholder="Password">
<label>Password</label>
</div>
<div class="form-group mb-3">
<div class="d-flex align-items-center justify-content-between">
<div class="flex-shrink-0 flex-first">
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" id="save-pass" value="option1">
<label class="form-check-label" for="save-pass">Save Password</label>
</div>
</div>
<div class="flex-shrink-0 flex-first">
<a href="#" class="link fw-medium">Forgot Password?</a>
</div>
</div>
</div>
<div class="form-group">
<button type="button" class="btn btn-lg btn-primary fw-medium full-width rounded-2">LogIn</button>
</div>
</form>
</div>
<div class="modal-divider"><span>Or login via</span></div>
<div class="social-login mb-3">
<ul>
<li><a href="#" class="btn connect-fb"><i class="ti-facebook"></i>Facebook</a></li>
<li><a href="#" class="btn connect-google"><i class="ti-google"></i>Google+</a></li>
</ul>
</div>
<div class="text-center">
<p class="mt-4">Have't Any Account? <a href="create-account.html" class="link fw-medium">Acreate An Account</a></p>
</div>
</div>
</div>
</div>
</div>
<!-- End Modal -->
<a id="back2Top" class="top-scroll" title="Back to top" href="#"><i class="ti-arrow-up"></i></a>
</div>
<!-- ============================================================== -->
<!-- End Wrapper -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- All Jquery -->
<!-- ============================================================== -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/rangeslider.js"></script>
<script src="assets/js/select2.min.js"></script>
<script src="assets/js/jquery.magnific-popup.min.js"></script>
<script src="assets/js/slick.js"></script>
<script src="assets/js/slider-bg.js"></script>
<script src="assets/js/lightbox.js"></script>
<script src="assets/js/imagesloaded.js"></script>
<script src="assets/js/custom.js"></script>
<!-- ============================================================== -->
<!-- This page plugins -->
<!-- ============================================================== -->
<script>
function openFilterSearch() {
document.getElementById("filter_search").style.display = "block";
}
function closeFilterSearch() {
document.getElementById("filter_search").style.display = "none";
}
</script>
</body>
<!-- Mirrored from shreethemes.net/resido-live/resido/my-profile.html by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 26 Jun 2024 15:37:55 GMT -->
</html>