This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathowner_profile.html
52 lines (45 loc) · 1.55 KB
/
owner_profile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
img{
width: 375px;
height: 667px;
}
body {
background-image: url("images/mockup/Owner_Job.png");
background-size: cover;
background-repeat: no-repeat;
}
</style>
</head>
<body>
<div id="addtask" style="width:330px;height:100px;margin-top:120px;margin-left:24px;"></div>
<div id="applied" style="width:330px;height:93px;margin-top:20px;margin-left:24px;"></div>
<div id="review" style="width:330px;height:93px;margin-top:20px;margin-left:24px;"></div>
<div id="me" style="width:108px;height:30px;margin-top:170px;margin-left:130px;"></div>
</body>
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/jquery-migrate-1.2.1.min.js"></script>
<script src="js/jquery-ui.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("div#addtask").click(function(){
window.location.href = "add_task.html";
});
$("div#review").click(function(){
window.location.href = "job_review.html";
});
$("div#me").click(function(){
window.location.href = "owner_group_chat.html";
});
$("div#applied").click(function(){
window.location.href = "applied_job.html";
});
});
</script>
</html>