-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemployer.php
140 lines (122 loc) · 3.6 KB
/
employer.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
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
body{
font-family: roboto;
}
.main{
display:flex;
flex-direction:column;
align-items:center;
border:2px rgb(95, 8, 139) solid;
width:30%;
margin-left:500px;
position: relative;
background-color: rgb(240, 245, 250);
flex-wrap:wrap;
}
.welcome{
font-size: 50px;
font-weight: bold;
margin-top:0;
margin-bottom:0;
color: rgb(6, 64, 112);
}
.main-div{
display:flex;
flex-direction:row;
justify-content: space-between;
margin:15px;
padding:15px;
}
.post-job{
margin-top:20px;
margin-bottom:20px;
background-color: rgb(230, 42, 74);
font-weight: bold;
font-size: 30px;
color:white;
border-radius:10px;
height:60px;
width:350px;
border:none;
box-shadow:2px 2px 3px rgba(0,0,0,0.8);
cursor: pointer;
}
.main-div-image{
border:5px rgb(4, 80, 137) solid;
border-radius:20px;
padding:4px;
height:80px;
width:80px;
}
.image-info{
height:80px;
width:80px;
}
.main-div-button{
height:50px;
width:200px;
margin-top:22px;
margin-left:70px;
border:none;
background-color: rgb(13, 49, 115);
font-weight: bold;
font-size: 25px;
color:white;
border-radius:10px;
box-shadow: -6px -5px 5px rgba(255, 255, 255, 0.8), 3px 2px 5px rgba(0, 0, 0, 0.8);
cursor: pointer;
}
.close-button{
position: absolute;
top:5px;
right:5px;
background-color:rgb(240, 245, 250);
border:none;
}
.close{
height:40px;
}
</style>
<script src="employer.js"></script>
</head>
<body>
<div class="main">
<p class="welcome">Welcome <?php
if(isset($_SESSION["username"]))
{
echo $_SESSION["username"]."!";
}else{
echo 'user!';
} ?> </p>
<button class="post-job" onclick="redirectToEmployer()">Post a job +</button>
<div class="main-div">
<div class="main-div-image"><img class="image-info" src="profile-image.png"></div>
<button class="main-div-button" onclick="Profileinfo()">Profile</button>
</div>
<div class="main-div">
<div class="main-div-image"><img class="image-info" src="jobs-image.png"></div>
<button class="main-div-button">Jobs</button>
</div>
<div class="main-div">
<div class="main-div-image"><img class="image-info" src="candidate-image.png"></div>
<button class="main-div-button">Candidate</button>
</div>
<div class="main-div">
<div class="main-div-image"><img class="image-info" src="interview-image.png"></div>
<button class="main-div-button">Interview</button>
</div>
<div class="main-div">
<div class="main-div-image"><img class="image-info" src=""> </div>
<button class="main-div-button" onclick="logout()">Logout</button>
</div>
<button class="close-button"><img class="close" src="close.png"></button>
</div>
</body>
</html>