Blame view
local/templates/main/footer.php
5.99 KB
80576aee7 Интеграция верстк... |
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 |
<?php if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED !== true) die(); /** @var array $arParams */ /** @var array $arResult */ /** @global CMain $APPLICATION */ /** @global CUser $USER */ /** @global CDatabase $DB */ ?> <section class="popup-form" id="popupform"> <div class="popup-form__container"> <button class="popup-form__close popup__btn-close" type="button"> <svg width="16" height="16"> <use xlink:href="/images/sprite.svg#exit"></use> </svg> </button> <div class="popup-form__content"><p class="lead-text popup-form__title">Оставите заявку на БЕСПЛАТНУЮ КОНСУЛЬТАЦИЮ</p> <form class="form js_form fade-in" name="form-popup"> <fieldset class="form__fields"><label class="form__label"><input class="js_form_item form__item form__fields_input form__fields_input-hidden" type="hidden" name="Тема"></label><label class="form__label"><input class="js_form_item form__item js_input_name form__fields_input" type="text" name="first_name" placeholder="Имя*" required></label><label class="form__label"><input class="js_form_item form__item js_input_phone form__fields_input" type="text" name="phone" placeholder="Телефон*" required></label><label class="form__label"><input class="js_form_item form__item js_input_email form__fields_input" type="text" name="email" placeholder="Почта*" required></label><label class="form__label"><input class="js_form_item form__item js_input_company form__fields_input" type="text" name="company" placeholder="Компания*" required></label><label class="form__label"><textarea name="comment" placeholder="Ваши комментарии" rows="3" class="js_form_item form__item form__fields_input form__fields_comment"></textarea></label><label class="form__label form__confirm checkbox"><input class="js_form_item form__item js_input_confirm" type="checkbox" name="send_form" value="Y"><span>Согласен с <a href="/files/policy.pdf" target="_blank" rel="nofollow">политикой обработки персональных данных</a></span></label></fieldset> <button class="button button_style_red form__btn js_form_btn" onSubmit="handleSubmit()">оставить заявку </button> </form> </div> </div> </section> <section class="feedback js_feedback_success"> <div class="feedback__wrap"> <button class="feedback__exit js_feedback_exit popup-form__close" type="button"> <svg width="16" height="16"> <use xlink:href="images/sprite.svg#exit"></use> </svg> </button> <div class="feedback__success"><h3 class="feedback__success-subtitle">Спасибо</h3> <h2 class="feedback__success-title">Благодарим за заявку</h2> <p class="feedback__success-text">Наши менеджеры свяжутся с вами в рабочее время с 10 до 18 по Москве. Будьте на связи.</p></div> </div> </section> <div id="captcha-container"></div> <footer class="section footer"> <div class="container footer__container fade-in"> <div class="footer__box"> <div class="footer__content"> <div class="footer__content-cta"><a class="footer__logo" href="/"><img src="/images/logo.svg" alt="Лого"> <img src="/images/logo-for-light-mode.svg" alt="Лого"></a> <p class="lead-text footer__title">Оставите заявку на БЕСПЛАТНУЮ КОНСУЛЬТАЦИЮ</p> <button class="button button_style_red footer__button popup-form-open" type="button" data-subject="Заявка с подвала">оставить заявку </button> </div> <div class="footer-menu"> <?php $APPLICATION->IncludeComponent("bitrix:menu", "bottom", [ "ROOT_MENU_TYPE" => "bottom", "MAX_LEVEL" => "1", "CHILD_MENU_TYPE" => "bottom", "DELAY" => "N", "ALLOW_MULTI_SELECT" => "N", "MENU_CACHE_TYPE" => "N", "MENU_CACHE_TIME" => "360000", "MENU_CACHE_USE_GROUPS" => "Y", ] ); ?> </div> </div> <div class="footer__contacts"> <span class="h3 footer-menu__contact-link"> <?php $APPLICATION->IncludeComponent("bitrix:main.include", "", ["AREA_FILE_SHOW" => "file", "PATH" => SITE_DIR . "include/phone.php", "AREA_FILE_RECURSIVE" => "N", "EDIT_MODE" => "text",], false); ?> </span> <span class="h3 footer-menu__contact-link"> <?php $APPLICATION->IncludeComponent("bitrix:main.include", "", ["AREA_FILE_SHOW" => "file", "PATH" => SITE_DIR . "include/email.php", "AREA_FILE_RECURSIVE" => "N", "EDIT_MODE" => "text",], false); ?> </span> <div class="text footer-menu__contact-address"> <?php $APPLICATION->IncludeComponent("bitrix:main.include", "", ["AREA_FILE_SHOW" => "file", "PATH" => SITE_DIR . "include/footer_address.php", "AREA_FILE_RECURSIVE" => "N", "EDIT_MODE" => "text",], false); ?> </div> <a class="footer-menu__contact-social" href="https://t.me/imbait" target="_blank"> <img class="footer-menu__contact-icon" src="/images/Telegram.svg" alt="Телеграм"><img class="footer-menu__contact-icon footer-menu__contact-icon_black" src="/images/Telegram-black.svg" alt="Телеграм"></a></div> </div> <div class="footer__copy"> <div class="footer__copy-line"></div> <div class="footer__copy-box"> <div class="text-s footer__copy-text"> © <?= date('Y'); ?> <?php $APPLICATION->IncludeComponent("bitrix:main.include", "", ["AREA_FILE_SHOW" => "file", "PATH" => SITE_DIR . "include/footer_copyright.php", "AREA_FILE_RECURSIVE" => "N", "EDIT_MODE" => "text",], false); ?></div> <a class="text-s footer__link footer__link_type_developer" href="https://web-valley.ru" target="_blank">Сайт разработан: <span>WebValley Studio</span></a></div> </div> </div> </footer> </body> </html> |