modal.php
5.75 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<div class="forms_" id="artboxcore-modal" aria-labelledby="Login" aria-hidden="true" style="display:none;">
<div class="forms_wr_">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 class="modal-title" id="Login">Заказать</h3>
</div>
<div class="modal-body">
<form id="get-itform" action="" method="POST" role="form">
<div id="name-block" class="form-group field-booknow-email required">
<div class="on_input_"></div>
<label class="control-label" for="booknow-email">Ваше имя</label>
<input type="text" id="booknow-email" class="form-control" name="name" autocomplete="off" aria-required="true">
</div>
<div id="email-block" class="form-group field-booknow-email required">
<div class="on_input_"></div>
<label class="control-label" for="booknow-email">Ваш e-mail</label>
<input type="text" id="booknow-email" class="form-control" name="email" autocomplete="off" aria-required="true">
</div>
<div id="phone-block" class="form-group field-booknow-email required">
<div class="on_input_"></div>
<label class="control-label" for="booknow-email">Ваш телефон</label>
<input type="text" id="booknow-email" class="form-control" name="phone" autocomplete="off" aria-required="true">
</div>
<div class="form-group">
<div class="col-md-6">
<div class="row">
<label>Какой сайт вам нужен?</label>
<div class="style input-wr">
<div class="style radio_custom">
<input type="radio" id="type_id1" name="site" value="лендинг">
<label for="type_id1">лендинг</label>
</div>
<div class="style radio_custom">
<input type="radio" id="type_id2" name="site" value="корпоративный сайт компании">
<label for="type_id2">корпоративный сайт компании</label>
</div>
<div class="style radio_custom">
<input type="radio" id="type_id3" name="site" value="сайт услуг">
<label for="type_id3">сайт услуг</label>
</div>
<div class="style radio_custom">
<input type="radio" id="type_id4" name="site" value="портфолио">
<label for="type_id4">портфолио</label>
</div>
<div class="style radio_custom">
<input type="radio" id="type_id5" name="site" value="блог">
<label for="type_id5">блог</label>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="row">
<label>Выберите страницы</label>
<div class="style input-wr">
<div class="style radio_custom">
<input type="checkbox" id="type_pg1" name="page" value="главная">
<label for="type_pg1">главная</label>
</div>
<div class="style radio_custom">
<input type="checkbox" id="type_pg2" name="page" value="блог">
<label for="type_pg2">блог</label>
</div>
<div class="style radio_custom">
<input type="checkbox" id="type_pg3" name="page" value="портфолио">
<label for="type_pg3">портфолио</label>
</div>
<div class="style radio_custom">
<input type="checkbox" id="type_pg4" name="page" value="текстовая">
<label for="type_pg4">текстовая</label>
</div>
<div class="style radio_custom">
<input type="checkbox" id="type_pg5" name="page" value="галерея">
<label for="type_pg5">галерея</label>
</div>
<div class="style radio_custom">
<input type="checkbox" id="type_pg6" name="page" value="прайс">
<label for="type_pg5">прайс</label>
</div>
<div class="style radio_custom">
<input type="checkbox" id="type_pg7" name="page" value="команда">
<label for="type_pg5">команда</label>
</div>
<div class="style radio_custom">
<input type="checkbox" id="type_pg8" name="page" value="контакты">
<label for="type_pg5">контакты</label>
</div>
</div>
</div>
</div>
<div style="clear:both;"></div>
</div>
<div class="form-group field-booknow-message">
<label class="control-label" for="booknow-message">Комментарий</label>
<textarea id="booknow-message" class="form-control" name="message" rows="4"></textarea>
<p class="help-block help-block-error"></p>
</div>
<p class="text-center">
<button type="submit" class="send-form btn btn-lg btn-template-primary">Заказать</button>
</p>
</form>
</div>
</div>
<div class="overlay-new"></div>
</div>
<div id="success-modal" class="success_" style="opacity: 0;display: none;top: 50%;">
<div class="forms_wr_">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 class="modal-title" id="Success">Спасибо за заявку</h3>
</div>
<div class="modal-body">
<p class="text-center">Мы скоро с вами свяжемся.</p>
<p class="text-center">
<button type="button" class="btn btn-template-primary" data-dismiss="modal">Закрыть</button>
</p>
</div>
</div>
</div>
<div id="overlay" style="display:none;"></div>