-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdinosoft-feedback-page.html
97 lines (81 loc) · 2.41 KB
/
dinosoft-feedback-page.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="DINOSOFT-LOGO.jpg">
<link rel="stylesheet" href="feedback-styles.css">
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width,initial-scale=1.0">
<title>Dinosoft Feedback Page</title>
<link rel="stylesheet" href=
"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<b><h1>Dinosoft Feedback Form</b>
</h1>
<div class="form-box">
<div class="textup">
<i class="fa fa-solid fa-clock"></i>
It only takes two minutes!!
</div>
<form action="https://formspree.io/f/manwwbzw" method="POST">
<!-- Replace {your_form_id} with your actual Formspree form ID -->
<label for="uname">
<i class="fa fa-solid fa-user"></i>
Name
</label>
<input type="text" id="uname"
name="uname" required>
<label for="email">
<i class="fa fa-solid fa-envelope"></i>
Email Address
</label>
<input type="email" id="email"
name="email" required>
<label for="date">
<i class="fa-regular fa-calendar-chec"></i>
When was your first time trying Dinosoft ?
</label>
<input type="date" id="date"
name="First time Tried" required>
<label>
<i class="fa-solid fa-face-smile"></i>
Do you satisfy with our service?
</label>
<div class="radio-group">
<input type="radio" id="yes"
name="satisfy" value="yes" checked>
<label for="yes">Yes</label>
<input type="radio" id="no"
name="satisfy" value="no">
<label for="no">No</label>
</div>
<label for="msg">
<i class="fa-solid fa-comments"
style="margin-right: 3px;"></i>
Got a suggestion ? </label>
<textarea id="msg" name="msg"
rows="4" cols="10" required>
</textarea>
<label for="feedback">
🗯️ Have Feedback ? </label>
<textarea id="feedback" name="feedback"
rows="8" cols="10" required>
</textarea>
<button type="submit">
Submit
</button>
</form>
</div>
<br>
<br>
<br>
<br>
<script>
window.onload = function() {
document.body.style.zoom = "95%";
}
</script>
</body>
</html>