-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
75 lines (68 loc) · 2.59 KB
/
contact.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Strongreturns</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<div id="logo">
<img src="logo.png" alt="Strongreturns Logo">
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="dashboard.html">Dashboard</a></li>
<li><a href="#" id="logout-link">Logout</a></li>
</ul>
</nav>
</header>
<main>
<section id="contact-info">
<h2>Contact Us</h2>
<p>If you have any questions or need support, please reach out to us:</p>
<ul>
<li><strong>Email:</strong> support@strongreturns.net</li>
<li><strong>Phone:</strong> +1 (555) 123-4567</li>
<li><strong>Address:</strong> 123 Returns Road, Package City, PC 12345</li>
</ul>
</section>
<section id="contact-form-section">
<h3>Send us a message</h3>
<form id="contact-form">
<div class="form-group">
<label for="name">Your Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Your Email:</label>
<input type="email" id="contact-email" name="email" required>
</div>
<div class="form-group">
<label for="message">Your Message:</label>
<textarea id="message" name="message" rows="4" required></textarea>
</div>
<button type="submit">Send Message</button>
</form>
</section>
</main>
<footer>
<p>© 2024 Strongreturns. All Rights Reserved.</p>
<p><a href="privacy.html">Privacy Policy</a> | <a href="terms.html">Terms of Service</a></p>
</footer>
<script src="scripts.js"></script>
<script>
document.addEventListener('DOMContentLoaded', () => {
// Handle form submission
document.getElementById('contact-form').addEventListener('submit', (e) => {
e.preventDefault();
// Logic for handling contact form goes here
// For now, just a mock alert
alert('Thank you for your message. We will get back to you soon.');
});
});
</script>
</body>
</html>