-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfeedback.html
More file actions
58 lines (50 loc) · 2.4 KB
/
feedback.html
File metadata and controls
58 lines (50 loc) · 2.4 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<!-- modal feedback -->
<button id="pressbtnfeedback" type="button" class="btn btn-default hint--info" data-toggle="modal" data-target="#modalFeedback" style="float: left; margin-left: 50px; margin-top: -70px;" data-hint="Замечания, ошибки, предложения по сайту">
Обратная связь</button>
<div class="modal fade" id="modalFeedback" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<!--<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span></button> -->
<h4 class="modal-title" id="exampleModalLabel">
Замечания, ошибки, предложения по сайту </h4>
</div>
<div class="modal-body">
<form>
<div class="form-group">
<label for="titlefeedback" class="control-label">
Название:</label>
<input id ="titlefeedback" type="text" class="form-control" >
</div>
<div class="form-group">
<label for="message-text" class="control-label">
Сообщение:</label>
<textarea id="bodyfeedback" rows="6" class="form-control" style="margin: 0px -1px 0px 0px; height: 147px; width: 568px;"></textarea>
</div>
<ul id="loaderfeedback" hidden ="true" class="fa-ul">
<li>
<i class="fa-li fa fa-spinner fa-spin">
</i>Оправка</li>
</ul>
</form>
<div id="resultfeedback">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">
Закрыть</button>
<button id="btnfeedback" type="button" class="btn btn-primary">
Оправить сообщение</button></div>
</div>
</div>
</div>
</body>
</html>