-
Notifications
You must be signed in to change notification settings - Fork 0
/
user_profile.php
156 lines (121 loc) · 4.31 KB
/
user_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
<?php
include('functions.php');
session_start();
if(!isset($_SESSION['username'])){
session_unset();
session_destroy();
header("Location:index.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Profile</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="http://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<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.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="http://maps.googleapis.com/maps/api/js"></script>
</head>
<style>
.al{
border:1px solid black;
text:center;
background-color:#485E73;
padding:5px;
text-align:center;
color:white;
}
#ala{
width:550px;
border:2px;
padding:25px;
margin:30px;
}
#ala2{
width:550px;
border:2px;
padding:25px;
margin:30px;
}
.jumbotron {
margin-bottom: 0;
}
nav{
margin-bottom: 0px;
}
#img{
float:right;
margin-right: 100px;
margin-bottom: 8px;
}
</style>
<body>
<nav class="navbar navbar-inverse">
<div class="container">
<div class="navbar-header" style="margin-top: 5px;">
<img src="job.png" alt="Unload" width="40" height="40"/>
</div>
<div class="navbar-header">
<a class="navbar-brand" href="#">JOBSITE.COM</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="user_home.php">JOBS</a></li>
<li><a href="#"></a></li>
<form class="navbar-form navbar-left">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search">
<div class="input-group-btn">
<button class="btn btn-default" type="submit">
<i class="glyphicon glyphicon-search"></i>
</button>
</div>
</div>
</form>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="interview_invitation.php"><span class="glyphicon glyphicon-envelope"></span> Invitation</a></li>
<li><a href="upload_cv.php"><span class="glyphicon glyphicon-plus-sign"></span> CV</a></li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown"
href="#"><?php echo $_SESSION['username'];?>  <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="user_profile.php"><span class="glyphicon glyphicon-user"></span> Profile</a></li>
<li><a href="functions.php?emp_username=<?php echo $_SESSION['username'];?> "><span class="glyphicon glyphicon-log-out"></span> Logout</a></li>
</ul>
</li>
</ul>
</div>
</nav>
<div class='jumbotron'>
<div class='container text-center'>
<h1>Hi, <?php echo $_SESSION['username']; ?></h1><p>Member of Jobsite.com</p>
</div>
</div>
<h3 class="al">Profile</h3>
<div class="row content">
<div id="img"><img src="userImage/<?php echo $_SESSION['username'];?>.jpg" height="300px" width="250px"/> </div>
<div class="col-sm-8" id="ala2">
<div class="cotainer text-center">
<?php echo"<h3>".$_SESSION['username']."</h3>"; ?>
<p><em>Welcome to JOB Site</em></p>
<p>You are a member of this system.
Whenever you need any service you should login first and do stuff as regarding.You can here Apply for your desire JOB.</p>
</div>
</div>
</div>
<div class="jumbotron">
<div class="container">
<div class="row">
This site is built for helping Job seekers and Employers.
</div>
</div>
</div>
<br>
<?php include('footer.php') ?>
</body>