-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathjob-seeker-profile.php
814 lines (514 loc) · 25.1 KB
/
job-seeker-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
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
<!doctype html>
<html lang="en">
<head>
<title>recruiter profile</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!--styles css-->
<?php include_once "styles.php"; ?>
<!--styles css-->
</head>
<body style="background-color:#F4F4F4;">
<!--navbar-->
<?php include_once "header.php"; ?>
<!--end of navbar-->
<div class="container-fluid m-0 p-0">
<div class="row">
<!--left col --> <div class="col-md-2"></div> <!--left col -->
<div class="col-md-8">
<!-- start your code from here-->
<div class="container-fluid p-2 my-2">
<div class="row">
<div class="col-md-2 bg-white">
<h5>Filters</h5>
<div class="tab">
<nav class="nav flex-column ">
<a class="nav-link active tablinks p-1" href="#" onclick="openCity(event, 'profile')" id="defaultOpen"><i class="fa fa-user fa-fw" aria-hidden="true"></i>Profile</a>
<a class="nav-link tablinks p-1" href="#" onclick="openCity(event, 'Inbox')"><i class="fa fa-envelope fa-fw" aria-hidden="true"></i>Inbox</a>
<a class="nav-link tablinks p-1" href="#" onclick="openCity(event, 'Sent')"><i class="fa fa-paper-plane fa-fw" aria-hidden="true"></i>Sent</a>
<a class="nav-link tablinks p-1" href="#" onclick="openCity(event, 'Draft')"><i class="fa fa-floppy-o fa-fw" aria-hidden="true"></i>Draft</a>
<a class="nav-link tablinks p-1" href="#" onclick="openCity(event, 'Jobs-Posted')"><i class="fa fa-share fa-fw" aria-hidden="true"></i>Jobs Posted</a>
<a class="nav-link tablinks p-1" href="#" onclick="openCity(event, 'Post-Job')"><i class="fa fa-black-tie fa-fw" aria-hidden="true"></i>Post Job</a>
<a class="nav-link tablinks p-1" href="#" onclick="openCity(event, 'Paid-Services')"><i class="fa fa-key fa-fw" aria-hidden="true"></i>Paid Services</a><br>
<b><i class="fa fa-cog fa-fw" aria-hidden="true"></i>Settings</b>
<a class="nav-link tablinks p-1" href="#" onclick="openCity(event, 'visibility')"><i class="fa fa-eye-slash fa-fw" aria-hidden="true"></i>Visibility</a>
<a class="nav-link tablinks p-1" href="#" onclick="openCity(event, 'Block-User')"><i class="fa fa-lock fa-fw" aria-hidden="true"> </i>Block User</a>
<a class="nav-link tablinks p-1" href="#" onclick="openCity(event, 'Change-Password')"><i class="fa fa-key fa-fw" aria-hidden="true"></i>Password</a>
</nav>
</div>
</div>
<div class="col-md-10">
<!--profile page-->
<div class="container-fluid p-2 bg-white tabcontent" id="profile">
<h3>Personal Information</h3><hr>
<form class="text-left" action="">
<div class="row">
<div class="col-md-3">
<img src="images/r-i-1.jpg" class="img-fluid">
</div>
<div class="col-md">
Name <br><input type="text" name="jobTitle" value="Jan Koum" class="w-75"> <i class="fa fa-pencil " aria-hidden="true" ></i><br><br>
Date of Birth <br>
<input type="date" name="bday" class="w-75"> <i class="fa fa-pencil" aria-hidden="true" ></i><br><br>
Mobile <br><input type="tel" name="jobTitle" value="1234567890" class="w-75"> <i class="fa fa-pencil" aria-hidden="true" ></i><br><br>
</div>
<div class="col-md">
Email <br><input type="email" name="jobTitle" value="[email protected]" class="w-75"> <i class="fa fa-pencil" aria-hidden="true" ></i><br><br>
Marital Status <br>
<input list="mstatus" name="mstatus" value="Married" class="w-75">
<datalist id="mstatus">
<option value="Single/unmarried">
<option value="Married">
<option value="Widowed">
<option value="Divorced">
<option value="Separated">
<option value="Other">
</datalist> <i class="fa fa-pencil" aria-hidden="true" ></i><br><br>
Gender<br>
<input type="radio" name="gender" value="male" checked>male
<input type="radio" name="gender" value="female"> female<br><br>
</div>
</div>
<div class="row">
<div class ="col-md">
Permanent Address
<textarea name="message" class="w-75 h-50">1601 Willow Road
Menlo Park, California 94025
United States of America</textarea> <i class="fa fa-pencil" aria-hidden="true" ></i><br><br>
Home Town / City <br>
<input type="text" name="jobTitle" value="california" class="w-75"> <i class="fa fa-pencil" aria-hidden="true" ></i><br><br>
</div>
<div class="col-md">
Key Skills<br>
<textarea name="message" class="w-75 h-50">
Data Mining, Social Sourcing, Direct Approach, Phone sourcing, Digital Sourcing.</textarea> <i class="fa fa-pencil" aria-hidden="true" ></i><br><br>
Pincode <br>
<input type="text" name="jobTitle" value="94025" class="w-75"> <i class="fa fa-pencil" aria-hidden="true" ></i><br><br>
</div>
</div><br><br>
<div class="row">
<!--work Details-->
<div class="col-md">
<h5>Work Details</h5>
Currently Working in <br>
<input type="text" name="jobTitle" value="Xyz Pvt. Ltd." class="w-75"> <i class="fa fa-pencil" aria-hidden="true" ></i><br><br>
Current Designation <br>
<input type="text" name="jobTitle" value="Hr Director" class="w-75"> <i class="fa fa-pencil" aria-hidden="true" ></i><br><br>
Role in Hiring <br>
<input type="text" name="jobTitle" value="Company Recruiter" class="w-75"> <i class="fa fa-pencil" aria-hidden="true" ></i><br><br>
</div>
<!--Sectors Details-->
<div class="col-md">
<h5>Sectors and Skills I Hire For</h5>
Functional Area:
<input type="checkbox" name="bike1" value="hero">HR
<input type="checkbox" name="bike1" value="hero">Sales
<input type="checkbox" name="bike1" value="hero">BPO
<input type="checkbox" name="bike2" value="honda">Accounting
<input type="checkbox" name="bike2" value="honda">Production<br><br>
Industries:
<input type="checkbox" name="bike1" value="hero">Travel
<input type="checkbox" name="bike1" value="hero">Construction
<input type="checkbox" name="bike1" value="hero">Banking
<input type="checkbox" name="bike2" value="honda">IT
<input type="checkbox" name="bike2" value="honda">Telecom <br><br>
</div>
</div>
<div class="row">
<div class="col-md text-right">
<input type ="submit" value="Save" class=" btn btn-large bg-success text-white" >
</div>
<div class="col-md text-left">
<button type ="btn" class="btn bg-danger text-white" href="#">Cancel</button> <br>
</div>
</div>
</form>
</div>
<!--profile page ends-->
<!--Inbox-->
<div class="container-fluid p-2 bg-white tabcontent" id="Inbox">
<h3>Inbox</h3><hr>
<table class="table table-hover table-inverse">
<thead>
<tr >
<th><button type ="button" class="" >Delete</button></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Mark<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">7:29 pm </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>William<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right"> 9:01 am </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 28</td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 25 </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 20 </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 18 </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 15 </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 10 </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 8 </td>
</tr>
</tbody>
</table>
</div>
<!--inbox ends-->
<!--sent starts-->
<div class="container-fluid p-2 bg-white tabcontent" id="Sent">
<h3>Sent</h3><hr>
<table class="table table-hover table-inverse">
<thead>
<tr >
<th><button type ="button" class="" >Delete</button></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Mark<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">7:29 pm </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>William<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right"> 9:01 am </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 28</td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 25 </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 20 </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 18 </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 15 </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 10 </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 8 </td>
</tr>
</tbody>
</table>
</div>
<!--sent ends-->
<!--draft starts-->
<div class="container-fluid p-2 bg-white tabcontent" id="Draft">
<h3>Draft</h3><hr>
<table class="table table-hover table-inverse">
<thead>
<tr >
<th><button type ="button" class="" >Delete</button></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Mark<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">7:29 pm </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>William<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right"> 9:01 am </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 28</td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 25 </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 20 </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 18 </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 15 </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 10 </td>
</tr>
<tr>
<td class="w-25"><input type="checkbox" name="vehicle" value="Bike"> <b>Lara<b></td>
<td class="w-50"> Job Application - <span class="text-muted">xyz applied for a job. please....</span> </td>
<td class="text-right">jan 8 </td>
</tr>
</tbody>
</table>
</div>
<!--draft ends-->
<!--jobs posted starts-->
<div class="container-fluid p-2 bg-white tabcontent" id="Jobs-Posted">
<h3>Jobs Posted</h3><hr>
<div class="container bg-white mb-2 px-3 py-2">
<a href="#"><h5>Software Engineer</h5></a><p>Wolters Kluwer India Pvt Ltd</p>
<i class="fa fa-briefcase" aria-hidden="true"></i><span> 4-7 yrs</span>
<i class="fa fa-map-marker" aria-hidden="true"></i><span> Mumbai(Marol)</span><br>
<span class="text-muted">Keyskills:</span><p>html, javascript, css, jquery, classic asp, ms sql server, asp.net, java...</p>
<span class="text-muted">Job Description:</span><p>Position: Software Engineer Reports to: Chief Technology Officer, Systems Location: Mumbai, ...</p>
<div class="row">
<div class="col-md text-left">
<i class="fa fa-star-o" aria-hidden="true"></i> <i class="fa fa-inr" aria-hidden="true"> Not disclosed</i>
</div>
<div class="col-md text-right">
<button type="button" class="btn btn-outline-danger btn-sm float-right">Delete</button>
</div>
</div>
</div>
<div class="container bg-white mb-2 px-3 py-2">
<a href="#"><h5>.Net Software Engineer - MAOS</h5></a><p>Wolters Kluwer India Pvt Ltd</p>
<i class="fa fa-briefcase" aria-hidden="true"></i><span> 4-7 yrs</span>
<i class="fa fa-map-marker" aria-hidden="true"></i><span> Mumbai(Marol)</span><br>
<span class="text-muted">Keyskills:</span><p>html, javascript, css, jquery, classic asp, ms sql server, asp.net, java...</p>
<span class="text-muted">Job Description:</span><p>Position: Software Engineer Reports to: Chief Technology Officer, Systems Location: Mumbai, ...</p>
<div class="row">
<div class="col-md text-left">
<i class="fa fa-star-o" aria-hidden="true"></i> <i class="fa fa-inr" aria-hidden="true"> Not disclosed</i>
</div>
<div class="col-md text-right">
<button type="button" class="btn btn-outline-danger btn-sm float-right">Delete</button>
</div>
</div>
</div>
</div>
<!--jobs posted ends-->
<!--jobs posted starts-->
<div class="container-fluid p-2 bg-white tabcontent" id="Post-Job">
<h3>Post Job</h3><hr>
<form class="text-left" action="">
Job Title <input type="text" name="jobTitle" value="eg: urgent requirment of web developer"><br><br>
Job Type
<input type="radio" name="gender" value="male" checked>Full Time
<input type="radio" name="gender" value="female"> Part Time<br><br>
Industry
<input list="ind" name="ind" >
<datalist id="ind">
<option value="Travel">
<option value="Construction">
<option value="Banking">
<option value="IT">
<option value="Telecom">
</datalist><br><br>
Functional Area
<input list="area" name="area" >
<datalist id="area">
<option value="HR">
<option value="Sales">
<option value="BPO">
<option value="Accounting">
<option value="Production">
</datalist><br><br>
Job Location <input type="text" name="jobTitle" ><br><br>
Job Role
<input list="jobRole" name="role" >
<datalist id="jobRole">
<option value="Accountant">
<option value="BPP/Telecaller">
<option value="cashier">
<option value="Designer">
<option value="HR/Admin">
</datalist><br><br>
Experience
<input list="exp" name="exp" >
<datalist id="exp">
<option value="Fresher">
<option value="0 to 1">
<option value="1 to 3">
<option value="3 to 5">
<option value="More than 5 Years">
</datalist><br><br>
Qulification / Eligibility
<input type="checkbox" name="bike1" value="hero">SSLC
<input type="checkbox" name="bike1" value="hero">PUC
<input type="checkbox" name="bike1" value="hero">Any Degree
<input type="checkbox" name="bike2" value="honda">BA
<input type="checkbox" name="bike2" value="honda">BBA
<input type="checkbox" name="bike2" value="honda">BCA
<input type="checkbox" name="bike2" value="honda">BSC
<input type="checkbox" name="bike2" value="honda">BE
<input type="checkbox" name="bike2" value="honda">B Tech
<input type="checkbox" name="bike2" value="honda">Other<br><br>
Key Skills <input type="text" name="keySkills" value=""><br><br>
Job Description
<textarea name="message" style="width:500px; height:50px;"></textarea><br><br>
Last Date of Application
<input type="date" name="lday"><br><br>
Number of Vacancies
<input type="number" name="vac"><br><br>
Sallery P. A.
<input list="sall" name="sall" >
<datalist id="sall">
<option value="less than 50,000 P.A">
<option value="50,000 to 1,00,000 P.A">
<option value="1,00,000 to 3,00,000 P.A">
<option value="3,00,000 to 5,00,000 P.A">
<option value="5,00,000 to 10,00,000 P.A">
<option value="More than 10,00,000 P.A">
</datalist><br><br>
<b>Company Info</b><br><bn>
Company Name <input type="text" name="jobTitle" value=""><br><br>
Website <input type="url" name="jobTitle" value=""><br><br>
Email <input type="email" name="jobTitle" value=""><br><br>
Telephone <input type="tel" name="jobTitle" value=""><br><br>
Company Description
<textarea name="message" style="width:500px; height:50px;"></textarea><br><br>
<input type ="submit" value="Post Now" class=" btn btn-large bg-success text-white" >
or
<button type ="btn" class="btn bg-danger text-white" href="#">Add to Draft</button> <br>
<span class ="text-center">"By posting this job, you agree to <a href="#">Terms of Use </a> and <a href="#">Privacy Policy<a>. If you have any issues, please write to [email protected]"</span>
</form>
</div>
<!--Post Job ends-->
<!--Paid services starts-->
<div class="container-fluid p-2 bg-white tabcontent" id="Paid-Services">
<h3>Paid Services</h3><hr>
<div class="container bg-white mb-2 px-3 py-2">
You haven't subscribed to any paid services.
</div>
</div>
<!--Paid services ends-->
<!--settings-->
<!--visibiliy starts-->
<div class="container-fluid p-2 bg-white tabcontent" id="visibility">
<h3>Visibility</h3><hr>
<div class="container bg-white mb-2 px-3 py-2">
<div class="row">
<div class= "col-md-6">
Who can see my profile
</div>
<div class= "col-md-6">
<input type="radio" name="rprofile" value="public" >Public<br>
<input type="radio" name="rprofile" value="followers">Only Followers<br>
<input type="radio" name="rprofile" value="users" checked>Only Logged in users<br>
<input type="radio" name="rprofile" value="me">Only me
</div>
</div><br>
<div class="row">
<div class= "col-md-6">
Who can see my stuff
</div>
<div class= "col-md-6">
<input type="radio" name="rstuff" value="spublic" checked>Public<br>
<input type="radio" name="rstuff" value="sfollowers">Only Followers<br>
<input type="radio" name="rstuff" value="susers">Only Logged in users<br>
<input type="radio" name="rstuff" value="sme">Only me
</div>
</div><br>
<button type="button" class="btn btn-outline-success btn-sm float-right m-1">Save</button>
<button type="button" class="btn btn-outline-danger btn-sm float-right m-1">Default</button>
<br>
</div>
</div>
<!--Visibility ends-->
<!--block user starts-->
<div class="container-fluid p-2 bg-white tabcontent" id="Block-User">
<h3>Block User</h3><hr>
<div class="container bg-white mb-2 px-3 py-2">
You haven't blocked any user.
</div>
</div>
<!--password starts-->
<!--block user starts-->
<div class="container-fluid p-2 bg-white tabcontent" id="Change-Password">
<h3>Change Password</h3><hr>
<div class="container bg-white mb-2 px-3 py-2">
<form>
Current Password
<input type="password" name="psw" class="ml-5"><br><br>
New Password
<input type="password" name="psw" class="ml-5"><br><br>
Retype New Password
<input type="password" name="psw">
</form>
<button type="button" class="btn btn-outline-success btn-sm float-right m-1">Save</button>
<button type="button" class="btn btn-outline-danger btn-sm float-right m-1">Cancel</button>
<br>
</div>
</div>
<!--password ends-->
</div>
</div>
</div>
<!-- End your code here-->
</div>
<!--right col --> <div class="col-md-2"></div> <!--right col -->
</div>
<!--footer-->
<?php include_once "footer.php"; ?>
<!-- end of footer-->
</div>
<?php include_once "script.php"; ?>
</body>
</html>