-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
70 lines (62 loc) · 2.12 KB
/
contact.html
File metadata and controls
70 lines (62 loc) · 2.12 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
<!-- contact.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="about.html">About</a></li>
<li><a href="faqs.html">FAQs</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="profile.html">Profile</a></li>
</ul>
</nav>
</header>
<main>
<h1>Contact Us</h1>
<form id="contact-form">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
<div id="form-response"></div>
</main>
<footer>
<p>© 2024 Your College Name. All rights reserved.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script>
document.getElementById('contact-form').addEventListener('submit', function(event) {
event.preventDefault();
const form = event.target;
const formData = {
name: form.name.value,
email: form.email.value,
message: form.message.value
};
axios.post('http://localhost:3000/contact', formData)
.then(response => {
if (response.data.success) {
document.getElementById('form-response').innerText = 'Your message has been sent!';
} else {
document.getElementById('form-response').innerText = 'There was an error sending your message.';
}
})
.catch(error => {
console.error('Error sending message:', error);
document.getElementById('form-response').innerText = 'There was an error sending your message.';
});
});
</script>
</body>
</html>