-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomerSupport.html
More file actions
82 lines (72 loc) · 2.52 KB
/
Copy pathCustomerSupport.html
File metadata and controls
82 lines (72 loc) · 2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Customer Support</title>
<link rel="stylesheet" href="support.css" />
</head>
<body>
<div class="header">
<div class="welcome">
Welcome <span id="username">JohnDoe</span>
</div>
<button onclick="logout()" class="logout-btn">Logout</button>
</div>
<div class="container">
<div class="support-info">
<h2>Contact Us</h2>
<p><strong>Phone:</strong> <span id="contact">9876543210</span></p>
<p><strong>Email:</strong> support@hotelbooking.com</p>
<p><strong>Address:</strong> 123 Hotel Lane, Cityville, Country</p>
</div>
<div class="feedback-form">
<h2>Give Your Feedback</h2>
<form id="feedbackForm" onsubmit="return validateForm()">
<label for="name">Name*</label>
<input type="text" id="name" required />
<label for="email">Email*</label>
<input type="email" id="email" required />
<label for="phone">Phone Number*</label>
<input type="text" id="phone" required maxlength="10" />
<label for="feedback">Feedback*</label>
<textarea id="feedback" rows="4" required></textarea>
<button type="submit">Submit</button>
</form>
<p id="formMessage"></p>
</div>
</div>
<footer class="footer">
<div class="footer-container">
<div class="footer-section branding">
<h2>Prep Master</h2>
<p>Copyright © 2025 Prepmaster</p>
<p>All rights reserved</p>
<div class="social-icons">
<a href="#" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
<a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
<div class="footer-section">
<h3>Company</h3>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Terms and Condition</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Features</h3>
<ul>
<li><a href="#">Notes</a></li>
<li><a href="#">Papers</a></li>
<li><a href="#">Upload</a></li>
</ul>
</div>
</div>
</footer>
<script src="support.js"></script>
</body>
</html>