-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
64 lines (59 loc) · 2.6 KB
/
contact.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
<?php
session_start();
$userEmail = isset($_SESSION['email']) ? $_SESSION['email'] : '';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Recipe Finder</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Manrope:[email protected]&family=Outfit:[email protected]&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/contact.css">
</head>
<body class="element">
<nav class="navbar">
<div class="nav-left">
<h1>
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" fill="currentColor" class="bi bi-search" viewBox="0 0 16 16">
<path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0"/>
</svg>
Recipe Finder
</h1>
</div>
<div class="nav-right">
<a href="index.php">Home</a>
<?php if (isset($_SESSION['user_logged_in']) && $_SESSION['user_logged_in']): ?>
<a href="logout.php">Logout</a>
<?php else: ?>
<a href="login.php">Login</a>
<?php endif; ?>
<a href="contact.php" class="active">Contact Us</a>
</div>
</nav>
<main>
<section class="contact-container container">
<h2>Contact Us</h2>
<p>If you have any questions, comments, or feedback, feel free to reach out to us! We would love to hear from you.</p>
<a href="mailto:[email protected]<?php echo $userEmail ? '?from=' . urlencode($userEmail) : ''; ?>" class="contact-btn">
Send an Email
</a>
</section>
</main>
<footer>
<div class="social-media">
<a href="#"><img src="./res/svg/instagram.svg" alt="Instagram"></a>
<a href="#"><img src="./res/svg/twitter.svg" alt="Twitter"></a>
<a href="#"><img src="./res/svg/pinterest.svg" alt="Pinterest"></a>
</div>
<p>© 2024 Recipe Finder. All Rights Reserved.</p>
</footer>
<script>
$(document).ready(function() {
$('.contact-container').addClass('visible');
});
</script>
</body>
</html>