-
Notifications
You must be signed in to change notification settings - Fork 6
/
feedback_form.html
52 lines (45 loc) · 2.02 KB
/
feedback_form.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
<!-- You can find the example of working form at https://www.iwebtool.com/ - click "Send Feedback" button -->
<!-- the feedback goes to #iwebtool-feedback slack channel. -->
<div class="modal fade bd-example-modal-lg" id="FeedbackModal" tabindex="-1" role="dialog" aria-labelledby="FeedbackModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Feedback</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div>
Tell us how we can improve or share the ideas of tools you would like to use in the future:
</div>
<br>
<textarea class="form-control" id="text_feedback"
style="background-color: white; color: #333; border-radius: 5px;" rows="10"></textarea>
</div>
<div class="modal-footer">
<div class="text-center" style="width:100%">
<button type="button" class="btn btn-primary btn-lg" data-dismiss="modal">Send</button>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade bd-example-modal-lg" id="FeedbackModalSuccess" tabindex="-1" role="dialog" aria-labelledby="FeedbackModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Thank you for your feedback!</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="text-center" style="border-radius: 20px; margin: 10px; padding: 10px;">
Our team will get the feedback and we will do our best to make iWebTool better
and more useful for you!
</div>
</div>
</div>
</div>
</div>