This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (isset($_POST['org']) && $_POST['org'] == '') { | |
if (isset($_POST['email']) && $_POST['email'] != '') { | |
$to = '[email protected]'; | |
$subject = 'site.com: Обратная связь'; | |
$message = '<p><b>Имя: </b> ' . $_POST['name'] . '</p>'; | |
$message .= '<p><b>Почта: </b> ' . $_POST['email'] . '</p>'; | |
$headers = "MIME-Version: 1.0" . "\r\n" . | |
"Content-type: text/html; charset=UTF-8" . "\r\n"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.contact_form | |
position: relative | |
overflow: hidden | |
z-index: 1 | |
form | |
filter: blur(0px) | |
transition: all .5s ease | |
textarea, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<noindex> | |
<!-- form --> | |
<div class="contact_form" active_class="_complete_" id="contact_form"> | |
<form class="form-horizontal"> | |
<div class="form-group"> | |
<div class="col-sm-11 _input"> | |
<input type="text" class="form-control" required="required" id="name" name="name" placeholder="Введите Ваше имя"> | |
</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.responsive').slick({ | |
dots: true, | |
// lazyLoad: 'ondemand', // <img data-lazy="img/lazyfonz1.png"/> | |
infinite: false, | |
speed: 300, | |
slidesToShow: 4, | |
slidesToScroll: 4, | |
responsive: [ | |
{ | |
breakpoint: 1024, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form> | |
<div class="form-group"> | |
<label for="exampleInputEmail1">Email address</label> | |
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email"> | |
</div> | |
<div class="form-group"> | |
<label for="exampleInputPassword1">Password</label> | |
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password"> | |
</div> | |
<div class="form-group"> |
NewerOlder