Skip to content

Commit

Permalink
Merge pull request #1408 from AsifQamar/patch-1
Browse files Browse the repository at this point in the history
added back to home button in Feedback page
  • Loading branch information
iamrahulmahato authored Oct 19, 2024
2 parents 9d9aab1 + dfd818c commit b321f79
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions feedback.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,34 +52,43 @@
button:hover {
background-color: #7fde1a;
}
.back-button {
position: absolute;
top: 10px;
left: 10px;
background-color: #f0f0f0;
color: #333;
padding: 5px 10px;
text-decoration: none;
border-radius: 4px;
font-size: 14px;
}
.back-button:hover {
background-color: #e0e0e0;
}
</style>
</head>
<body>

<a href="#" class="back-button">Back to Home</a>
<div class="container">
<h1>Feedback Form</h1>
<h4>We value your feedback...</h4>
<form action="/submit-feedback" method="POST">
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Enter your name" required>

<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Enter your email id" required>

<label for="rating">How would you rate your experience?</label>
<select id="rating" name="rating" required>
<option value="excellent">Excellent</option>
<option value="good">Good</option>
<option value="average">Average</option>
<option value="poor">Poor</option>
</select>

<label for="feedback">Feedback:</label>
<textarea id="feedback" name="feedback" rows="5" placeholder="Write a feedback..." required></textarea>

<button type="submit">Submit Feedback</button>
</form>
</div>

</body>
</html>

0 comments on commit b321f79

Please sign in to comment.