-
Notifications
You must be signed in to change notification settings - Fork 0
/
ContactInfo.php
54 lines (52 loc) · 1.4 KB
/
ContactInfo.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
<?php
session_start();
if (!isset($_SESSION["username"])){
header("location:index.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Contact Information</title>
<link rel="stylesheet" href="style/cistyle.css" />
</head>
<body>
<div id="cont">
<div class="container2">
<span id="nav-bar-comp">
<a href="main.php">Home</a>
<a href="cv.php">CV</a>
<a href="gallery.php">Gallery</a>
<a href="ContactInfo.php">Contact Me</a>
</span>
<?php
if (isset($_SESSION["username"])) {
echo '<span id ="right">Welcome, ' . $_SESSION["firstname"] ;
echo '<br><a href="be/logout.php" id = "logout">Logout</a></span>';
}
?>
</div>
<div id="contact-info">
<h1>My Contact Details</h1>
<ul>
<li>
<a href="https://www.facebook.com/profile.php?id=100003332898422">
Facebook
</a>
</li>
<li>
<a href="https://www.instagram.com/naderhalawanii/">Instagram</a>
</li>
<li>
<a href="https://www.linkedin.com/in/nader-halawani-a1a324258/">
LinkedIn
</a>
</li>
<li>Phone Number: +961 81 216 978</li>
</ul>
<hr />
</div>
</div>
</body>
</html>