-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathseekerAccount.php
123 lines (100 loc) · 3.82 KB
/
seekerAccount.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
<?php include 'authorizeSeeker.php'; ?>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="img/jobsConnect.svg" type="image/x-icon">
<title> Account | Job Seeker</title>
<link href="css/simpleGridTemplate.css" rel="stylesheet" type="text/css">
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="css/Animate.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="css/Animate.css" rel="stylesheet" type="text/css">
<link href="css/animate.min.css" rel="stylesheet" type="text/css">
<!--FONTS-->
<link href="https://fonts.googleapis.com/css2?family=Sora:wght@200&display=swap" rel="stylesheet">
<style>
.tiltContain {
margin-top: 0%;
}
.btnTilt {
height: 75px;
background: rgba(225, 225, 225, 0.2);
color: white;
font-family: Sora;
}
.textDarkShadow {
text-shadow: 0px 0px 3px #000, 3px 3px 5px #003333;
}
.pc {
animation-name: pc;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
margin-left: 30px;
margin-top: 5px;
}
@keyframes pc {
0% {
transform: translate(0, 0px);
}
50% {
transform: translate(0, 15px);
}
100% {
transform: translate(0, -0px);
}
}
</style>
<body onload="logoBeat()" style="font-family: 'Sora', sans-serif;">
<?php
include 'navBar.php';
include 'signinEmployerModals.php';
?>
<!-- Main Container -->
<div class="container-fluid" style="background-color:#FFDAB9;">
<?php
include 'connect.php';
$sid = $_SESSION["sid"];
$sqlE = "select * from seeker where id = '$sid' ;";
$resultE = $conn->query($sqlE);
if ($resultE->num_rows > 0) {
// output data of each row
if ($rowE = $resultE->fetch_assoc()) {
$name = $rowE["name"];
$email = $rowE["email"];
$qlf = $rowE["qualification"];
$skills = $rowE["skills"];
}
}
?>
<div class="hero">
<div style="width: 100%; " class="row">
<div class="col-md-6">
<img src="img/1.jpg" class="img-circle pc" width="200" style="margin: 20%; box-shadow: 0px 0px 20px #1e1e1e;">
</div>
<div style=" height: 100vh; color: black " class="col-md-6">
<h2 style="margin-top:100px;">User Name</h2>
<h4><?php echo $name; ?></h4>
<br><br>
<h2>Email</h2>
<h4><?php echo $email; ?></h4>
<br><br>
<h2>Qualification</h2>
<h4><?php echo $qlf; ?></h4>
<br><br>
<h2>Skills</h2>
<h4><?php echo $skills; ?></h4>
<br><br>
</div>
</div>
</div>
</div>
<!--first row -->
<script src="js/tilt.jquery.min.js"></script>
<script src="js/signinModal.js"></script>
</body>
</html>