-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedback.html
More file actions
34 lines (28 loc) · 1.81 KB
/
Copy pathfeedback.html
File metadata and controls
34 lines (28 loc) · 1.81 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
---
layout: default
title: "Give Feedback"
permalink: /feedback/
---
<section id="feedback-section" style="padding: 50px 20px; background-color: #1f1f1f; color: #fff; text-align: center;">
<h1 style="color: #4CAF50;">💬 We Value Your Feedback</h1>
<p style="max-width: 700px; margin: auto; font-size: 1.1em;">
Help us improve by sharing your thoughts, suggestions, or concerns. We take your feedback seriously and appreciate your input!
</p>
<form action="https://formsubmit.co/kent.sew@gmail.com" method="POST" style="max-width: 600px; margin: 30px auto; background-color: #2a2a2a; padding: 30px; border-radius: 10px;">
<input type="hidden" name="_next" value="https://dataforsolution.github.io/thank-you/">
<input type="hidden" name="_captcha" value="false">
<label for="name" style="display: block; text-align: left;">Your Name</label>
<input type="text" id="name" name="name" required
style="width: 100%; padding: 10px; margin-bottom: 15px; border-radius: 6px; background: #333; color: #fff; border: none;">
<label for="email" style="display: block; text-align: left;">Your Email</label>
<input type="email" id="email" name="email" required
style="width: 100%; padding: 10px; margin-bottom: 15px; border-radius: 6px; background: #333; color: #fff; border: none;">
<label for="feedback" style="display: block; text-align: left;">Your Feedback</label>
<textarea id="feedback" name="message" rows="5" required
style="width: 100%; padding: 10px; border-radius: 6px; background: #333; color: #fff; border: none;"></textarea>
<button type="submit"
style="margin-top: 20px; padding: 12px 24px; background: #4CAF50; border: none; border-radius: 6px; color: white; font-weight: bold; font-size: 1rem; cursor: pointer;">
Submit Feedback
</button>
</form>
</section>