-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathContactUs.php
More file actions
95 lines (57 loc) · 1.52 KB
/
ContactUs.php
File metadata and controls
95 lines (57 loc) · 1.52 KB
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
<?php
session_start();
?>
<!DOCTYPE HTML>
<title>Contact Us</title>
<html>
<link rel="stylesheet" type="text/css" href="ContactUscss.css">
<div class="container">
<div class="navigation">
<a href="home.php">
<img src="Pizza logo3.png" class="logo">
</a>
<?php if(!isset($_SESSION['email'])) : ?>
<a href="Login.php">
<p3> Login</p3>
</a>
<a href="register.php">
<p3> Register</p3>
</a>
<?php endif; ?>
<?php if(isset($_SESSION['email'])) : ?>
<a href="LogOut.php">
<p3>Log Out</p3>
</a>
<?php endif; ?>
</div>
<div class="buttonHolder">
<a href="order.php">
<button class="OrderButton">
<p2>Order</p2>
</button>
</a>
<a href="contactus.php">
<button class="ContactButton">
<p2>Contact Us</p2>
</button>
</a>
<a href="about.php">
<button class="AboutButton">
<p2>About</p2>
</button>
</a>
</div>
<div class="ContactHead">
<h1>Contact Us</h1>
</div>
<div class="contactPara">
<h2> We always want to give our customers the best experience possible. Any queries?<br>
Let us know.</h2><br><br>
<span><h3>Phone:</h3></span> <p4> 0876454897 </p4>
<span><h3>Email:</h3></span> <p4> C16379261@mydit.ie </p4>
</div>
<footer>
<p>Website by: James Hughes</p>
</footer>
</div>
</html>