forked from binvant/MakeMyCareer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
candidateHomePage.html
39 lines (35 loc) · 1.42 KB
/
candidateHomePage.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="profile.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script type='module' src="candidateProfile.js"></script>
</head>
<body>
<div class="row" style="background-color:rgb(9, 7, 36); color: aliceblue; text-align: center; height:50px;">
<p id="welcomeTag" style=" text-align: right; padding-top:15px; padding-right:10px;"> Hi, Candidate Name </p>
</div>
<div class="row">
<div class="column1" style="background-color:#aaa;">
<div style="background-image: url('ImageLocation');background-size: cover; height:480px; padding-top:80px;">
<h2 id="candidateName" class="profile-section-header">Candidate Name</h2>
<div class="profile-section" style="background-color:rgb(207, 205, 205); ">
<p>Candidate's Bio</p>
<div id="candidateBio" ></div>
</div>
</div>
<div>
<a href="candidateUpdateProfile.html"> <button type="submit" style="margin:100px;" >Update Profile</button> </a>
</div>
</div>
<div class="column2" style="background-color:#bbb; width:75%">
<div style="background-color:grey; width:100%;">
<h3 style="text-align: center;"> Job Posted </h3>
</div>
<div id="joblist" style="background-color:#aaa;">
</div>
</div>
</div>
</body>
</html>