-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo_modal.php
45 lines (38 loc) · 2.09 KB
/
info_modal.php
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
<!-- My Account -->
<div class="modal fade" id="Feedbackform" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<center><h4 class="modal-title" id="myModalLabel">My Account</h4></center>
</div>
<div class="modal-body">
<div class="container-fluid">
<form method="POST" action="#" >
<div class="col-md-4">
<label for="profile-first-name" class="my-profile__label">Full Name</label>
<input type="text" value="" class="my-profile__field" id="profile-first-name">
<label for="profile-email" class="my-profile__label">Email*</label>
<input type="email" value="" required name="email" class="my-profile__field" id="profile-email">
<div>
<label for="offer-type" class="my-profile__label">Reaction</label>
<select name="Reaction" id="offer-type" class="my-profile__field">
<option disabled value="All" selected>Feedback Reaction</option>
<option value="Happy">Happy</option>
<option value="Fairly Happy">Fairly Happy</option>
<option value="Neutral">Neutral</option>
<option value="Not Happy">Not Happy</option>
</select>
</div><!-- .col -->
<label for="profile-twitter" class="my-profile__label">Message</label>
<input type="text" name="comment" required value="" class="my-profile__field" id="profile-twitter">
<button type="submit" name="submit_feedback" class="my-profile__submit">Send</button>
</div><!-- .col -->
</form>
</div>
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- /.modal -->