Joywork/contacts.php
2026-05-22 21:21:54 +03:00

81 lines
3.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
require_once($_SERVER['DOCUMENT_ROOT']."/config.php");
if (isset($_SESSION['id'])) {
header("location:sale.php");
exit();
}
$get=clearInputData($_GET);
if($_GET['ok_auth'])
{
$user = new User;
$msg = $user->auth($get);
}
if($get['msg']) $msg = $get['msg'];
if($_POST['ok_auth2'])
{
$post=clearInputData($_POST);
$user = new User;
$msg2 = $user->check_sms($post);
}
if($_POST['ok_auth3'])
{
$post=clearInputData($_POST);
$user = new User;
$msg2 = $user->check_sms($post,1);
}
if($_POST['ok_user'])
{
$post=clearInputData($_POST);
$user = new User;
$msg_user = $user->reg($post);
}
header('Access-Control-Allow-Origin: *');
require_once($_SERVER['DOCUMENT_ROOT']."/promo/templates/new-header.php");
?>
<div class="content_offset"></div>
<div class="container-fluid c">
<div class="row">
<div class="col-xs-12">
<div class="bcrumbs"><a href="/">Главная</a>→<span>Контакты</span></div>
<h1>Контакты</h1>
</div>
</div>
<div class="row">
<div class="col-md-8 yamap_desktop">
<script type="text/javascript" charset="utf-8" async src="https://api-maps.yandex.ru/services/constructor/1.0/js/?um=constructor%3A5e5e948cd2eadfc006afbf01f65027dca41cd980a7718b8b6b5ddc247e4b54a1&amp;width=100%25&amp;height=470&amp;lang=ru_RU&amp;scroll=true"></script>
</div>
<div class="col-md-4 contacts_list">
<h2>Связаться с нами</h2>
<div class="contacts_item">
<h3>Телефоны:</h3>
<a class="phone" href="tel:+78127650801">+7 812 765-08-01</a>
</div>
<div class="contacts_item">
<h3>E-mail:</h3>
<a class="email" href="mailto:support@joywork.ru">support@joywork.ru</a>
</div>
<div class="contacts_item">
<h3>Адрес:</h3>
<p>Санкт-Петербург, ул. Новгородская, д. 23</p>
<p class="comment">Работаем по будням с 9:00 до 23:00</p>
</div>
<div class="contacts_item social last">
<h3>Социальные сети:</h3>
<a href="https://vk.com/onlyjoywork" target="_blank"><img src="/images/social_vk.svg"></a>
<a href="https://t.me/joyworkcrm" target="_blank"><img width="36" height="36" src="/images/social_tg.png"></a>
<a href="https://www.youtube.com/channel/UCwmP6fio1I20_8G3Pkp24Pw?view_as=subscriber" target="_blank"><img src="/images/social_yt.svg"></a>
</div>
</div>
<div class="col-md-8 yamap_mobile">
<script type="text/javascript" charset="utf-8" async src="https://api-maps.yandex.ru/services/constructor/1.0/js/?um=constructor%3A5e5e948cd2eadfc006afbf01f65027dca41cd980a7718b8b6b5ddc247e4b54a1&amp;width=100%25&amp;height=470&amp;lang=ru_RU&amp;scroll=true"></script>
</div>
</div>
</div>
<?php
require_once($_SERVER['DOCUMENT_ROOT']."/promo/templates/footer.php");
?>