new changes

This commit is contained in:
Meylis Gazakow 2021-11-08 22:16:45 +03:00
parent ce00864733
commit 00c25dac54
16 changed files with 1639 additions and 251 deletions

View File

@ -36,11 +36,11 @@
<div class="post_input"> <!-- <div class="post_input">
<label for="good-count">{{'account.amount'|_}} (TMT)<span>*</span> </label> <label for="good-count">{{'account.amount'|_}} (TMT)<span>*</span> </label>
<input type="text" placeholder="100" id="good-count" disabled value="{{amount}}"> <input type="text" placeholder="100" id="good-count" disabled value="{{amount}}">
<span data-validate-for="amount" style="color: red;"></span> <span data-validate-for="amount" style="color: red;"></span>
</div> </div> -->
<div class="post_upload_box"> <div class="post_upload_box">
<div class="post_upload_item"> <div class="post_upload_item">
@ -58,11 +58,16 @@
<span data-validate-for="bank_file" style="color: red;"></span> <span data-validate-for="bank_file" style="color: red;"></span>
</div> </div>
</div> </div>
<div class="btn_bg">
<button class="send_btn" type="submit">
{{'account.send'|_}}
</button>
<!-- <div class="btn_bg">
<button class="post_btn" type="submit"> <button class="post_btn" type="submit">
{{'account.send'|_}} {{'account.send'|_}}
</button> </button>
</div> </div> -->
</form> </form>

View File

@ -11,40 +11,98 @@
<div class="contact_title"> <div class="contact_title">
{{'account.fill_up_balance'|_}} {{'account.fill_up_balance'|_}}
</div> </div>
<div class="post_in">
<label for="good-count">Выберите метод оплаты<span>*</span> </label>
<div class="balance_tabs">
<h3 class="balance_link open_link active" data-tab="#balance-1">Онлайн оплата</h3>
<h3 class="balance_link open_link" data-tab="#balance-2">Банковский перевод</h3>
</div>
</div>
<div class="balance_box">
<div class="balance_source open_info active" id="balance-1">
<form action="#"
data-request="onSend"
data-request-validate
data-request-flash
class="post_form-3 first-step-form">
<div class="post_input">
<label for="good-count">{{'account.amount'|_}} (TMT)<span>*</span> </label>
<input type="number" step="0.01" name="amount" placeholder="100" id="good-count" required>
<span data-validate-for="amount" style="color: red;"></span>
</div>
<button type="submit" class="send_btn">
Send
</button>
<form action="#" <p class="post_footer-text">
data-request="onSend" <span>*</span> Перед отправкой убедитесь что перевод был осуществлен верно и у вас имеется чек
data-request-validate </p>
data-request-flash </form>
class="post_form post_form-2 first-step-form"> </div>
<div class="balance_source open_info" id="balance-2">
<form class="post_form-3 bank_form" data-request="onPayByBankTransfer" data-request-validate data-request-flash data-request-files
data-request-data="amount: {{amount}}">
<div class="post_input"> <div class="bank">
<label for="good-count">{{'account.amount'|_}} (TMT)<span>*</span> </label> <div class="bank_group">
<input type="number" step="0.01" name="amount" placeholder="100" id="good-count" required> <div class="bank_title">
<span data-validate-for="amount" style="color: red;"></span> {{'account.bank_details'|_}}:
</div> </div>
<div class="bank_text">
<div class="post_input"> - 1234-1234-1234-1234
<label>{{'account.payment_type'|_}} <span>*</span> <span data-validate-for="payment_type" style="color: red;"></span></label> </div>
<div class="my-select"> <div class="bank_text">
<select name="payment_type" required> - 1234-1234-1234-1234
<option value="">{{'account.payment_type'|_}}</option> </div>
<option value="bank">{{'account.bank_transfer'|_}}</option> </div>
<option value="online">{{'account.online_payment'|_}}</option> <div class="bank_group">
</select> <div class="bank_title">
{{'account.bank_address'|_}}:
</div>
<div class="bank_text">
{{'account.bank_1'|_}}
</div>
</div>
<div class="bank_group">
<div class="bank_title">
{{'account.our_bank_details'|_}}:
</div>
<div class="bank_text">
- 1234-1234-1234-1234
</div>
</div> </div>
</div> </div>
<div class="btn_bg"> <div class="post_upload_box">
<button class="post_btn" type="submit" data-attach-loading> <div class="post_upload_item">
{{'account.pay'|_}} <label class="upload_label" >{{'account.upload_file'|_}}<span>*</span></label>
<div class="upload_group">
<label for="file-1">{{'account.upload_file'|_}}</label>
<div class="form_group">
<label class="additional">
<span>{{'account.nothing_chosen'|_}}</span>
</label>
<input type="file" name="bank_file" id="file-1" class="inputfile inputfile-1"
data-multiple-caption="{count} files selected" />
</div>
</div>
<span data-validate-for="bank_file" style="color: red;"></span>
</div>
</div>
<button class="send_btn" type="submit">
{{'account.send'|_}}
</button> </button>
<p class="post_footer-text">
<span>*</span> Перед отправкой убедитесь что перевод был осуществлен верно и у вас имеется чек
</p>
</form>
</div> </div>
</div>
</form>
</div> </div>
{% else %} {% else %}
<div class="post_wrap"> <div class="post_wrap">

View File

@ -0,0 +1,403 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/slick-theme.css">
<link rel="stylesheet" href="css/slick.css">
<link rel="stylesheet" href="css/main.css">
<title>History</title>
</head>
<body>
<!-- Header Top ========================================================= -->
<section class="header_top" id="head-top">
<div class="auto_container">
<div class="top_wrap">
<div class="info_block">
<div class="header_contact">
<div class="header_icon">
<img src="images/svg/phone-call.svg" alt="">
</div>
<div class="head_text">
+99312446015
</div>
</div>
<div class="header_contact">
<div class="header_icon">
<img src="images/svg/blue_mail.svg" alt="">
</div>
<a href="#" class="head_text">
info@exchange.gov.tm
</a>
</div>
</div>
<a href="#header" class="top_btn">
<img src="images/svg/up.svg" alt="">
</a>
<div class="info_block">
<div class="header_contact">
<div class="header_icon">
<img src="images/svg/trend_up.svg" alt="">
</div>
<div class="currency">
usd
</div>
<div class="head_num">
3.5000
</div>
</div>
<div class="header_contact">
<div class="header_icon">
<img src="images/svg/trending-down.svg" alt="">
</div>
<div class="currency">
eur
</div>
<div class="head_num">
4.3430
</div>
</div>
<div class="header_contact">
<div class="header_icon">
<img src="images/svg/trend_up.svg" alt="">
</div>
<div class="currency">
gbp
</div>
<div class="head_num">
3.4353
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Header Top end ========================================================= -->
<!--Header ============================================================= -->
<header class="header" id="header">
<div class="auto_container">
<div class="header_wrap">
<a href="index.html" class="header_logo">
<div class="header_img">
<img src="images/big_logo.png" alt="logo">
</div>
<div class="logo_text">
Государственная товарно-сырьевая <br>
биржа Туркменистана
</div>
</a>
<div class="profile">
<div class="profile_bio">
<div class="profile_head">
<div class="profile_icon">
<img src="images/svg/user-plus.svg" alt="">
</div>
<div class="profile_text">
Аман Аманов
</div>
<div class="prodile_arrow">
<img src="images/svg/arrow-down.svg" alt="">
</div>
</div>
<div class="profile_drop">
<a href="personal_data.html" class="profile_item">
<div class="profile_icon">
<img src="images/svg/user-plus.svg" alt="">
</div>
<div class="profile_text">
Персональные данные
</div>
</a>
<a href="my_post.html" class="profile_item">
<div class="profile_icon">
<img src="images/svg/clipboard.svg" alt="">
</div>
<div class="profile_text">
Мои объявления
</div>
</a>
<a href="#" class="profile_item">
<div class="profile_icon">
<img src="images/svg/inbox.svg" alt="">
</div>
<div class="profile_text">
Сообщения
</div>
</a>
<a href="#" class="profile_item">
<div class="profile_icon">
<img src="images/svg/log-out.svg" alt="">
</div>
<div class="profile_text">
Выйти
</div>
</a>
</div>
</div>
<a href="add_post.html" class="add_post_btn">
<div class="post_icon">
<img src="images/svg/add.svg" alt="">
</div>
<div class="post_text">
Добавить объявление
</div>
</a>
</div>
</div>
</div>
</header>
<!--Header end ========================================================= -->
<!--Navs ============================================================= -->
<nav class="navs" id="nav">
<div class="auto_container">
<div class="navs_wrap">
<div class="burger">
<img src="images/svg/menu.svg" alt="">
</div>
<div class="links_bg">
<div class="links">
<a href="category.html" class="nav_link">Категории</a>
<a href="product.html" class="nav_link">Условия торгов</a>
<a href="contact.html" class="nav_link">Обратная связь</a>
<div class="mobile_register">
<div class="register_btn">
<div class="btn_icon">
<img src="images/svg/user-plus-white.svg" alt="">
</div>
<div class="btn_text">
Регистрация
</div>
</div>
<div class="log_in">
<div class="btn_icon">
<img src="images/svg/log-in-white.svg" alt="">
</div>
<div class="btn_text">
Войти
</div>
</div>
</div>
<div class="mobile_profile">
<div class="profile_bio">
<div class="profile_head">
<div class="profile_icon">
<img src="images/svg/user-plus.svg" alt="">
</div>
<div class="profile_text">
Аман Аманов
</div>
<div class="prodile_arrow">
<img src="images/svg/arrow-down.svg" alt="">
</div>
</div>
<div class="profile_drop">
<a href="personal_data.html" class="profile_item">
<div class="profile_icon">
<img src="images/svg/user-plus.svg" alt="">
</div>
<div class="profile_text">
Персональные данные
</div>
</a>
<a href="my_post.html" class="profile_item">
<div class="profile_icon">
<img src="images/svg/clipboard.svg" alt="">
</div>
<div class="profile_text">
Мои объявления
</div>
</a>
<a href="#" class="profile_item">
<div class="profile_icon">
<img src="images/svg/inbox.svg" alt="">
</div>
<div class="profile_text">
Сообщения
</div>
</a>
<a href="#" class="profile_item">
<div class="profile_icon">
<img src="images/svg/log-out.svg" alt="">
</div>
<div class="profile_text">
Выйти
</div>
</a>
</div>
</div>
<a href="add_post.html" class="add_post_btn">
<div class="post_icon">
<img src="images/svg/add.svg" alt="">
</div>
<div class="post_text">
Добавить объявление
</div>
</a>
</div>
</div>
</div>
<div class="languages">
<a href="#" class="lang_item">eng</a>
<a href="#" class="lang_item active">рус</a>
<a href="#" class="lang_item">tkm</a>
</div>
</div>
</div>
</nav>
<!--Navs end ========================================================= -->
<!-- Add post ============================================================= -->
<section class="post">
<div class="auto_container">
<div class="post_wrap">
<div class="contact_title">
История пополнения
</div>
<div class="history_table">
<table>
<thead>
<tr>
<th>№ пополнения</th>
<th>Дата пополнения</th>
<th>Метод оплаты</th>
<th>Сумма пополнения</th>
<th>Статус</th>
</tr>
</thead>
<tbody>
<tr>
<td>252525</td>
<td>13:00 - 09.08.2021</td>
<td>Банковский трансфер</td>
<td>1 000 TMT</td>
<td>
<p class="approved">
Одобренно
</p>
</td>
</tr>
<tr>
<td>323232</td>
<td>13:00 - 09.08.2021</td>
<td>Банковский трансфер</td>
<td>2 000 TMT</td>
<td>
<p class="denied">
Отказ
</p>
</td>
</tr>
</tbody>
</table>
</div>
<div class="cat_end">
<a href="#" class="cat_arrow left">
<img src="images/svg/arrow-right.svg" alt="">
</a>
<form action="#" class="cat_form">
<input type="text" placeholder="1">
</form>
<a href="#" class="cat_arrow ">
<img src="images/svg/arrow-right.svg" alt="">
</a>
<div class="cat_page">
15 страниц
</div>
</div>
</div>
</div>
</section>
<!-- Add post end ========================================================= -->
<!--Footer ============================================================= -->
<footer class="footer">
<div class="auto_container">
<div class="footer_wrap">
<div class="footer_content">
<a href="index.html" class="foot_logo">
<div class="footer_img">
<img src="images/register_logo.png" alt="logo">
</div>
<div class="foot_logo_text">
Государственная товарно-сырьевая <br>
биржа Туркменистана
</div>
</a>
<div class="foot_outer">
<div class="foot_col">
<div class="foot_title">
Категории
</div>
<div class="foot_box">
<a href="#" class="foot_item">
Нефтехимия
</a>
<a href="#" class="foot_item">
Машиностроение
</a>
<a href="#" class="foot_item">
Легкая промышленность
</a>
<a href="#" class="foot_item">
Стройматериалы
</a>
</div>
</div>
<div class="foot_col">
<div class="foot_title">
Контакты
</div>
<div class="foot_box">
<div class="foot_item">
Тел: +99312446015
</div>
<div class="foot_item">
Эл. почта: info@exchange.gov.tm
</div>
<div class="foot_item">
Адрес: 744000, Туркменистан <br>
г.Ашгабат, Арчабиль шаелы 52
</div>
</div>
</div>
</div>
</div>
<div class="copyright">
© TDHСMB все права зашишены
</div>
</div>
</div>
</footer>
<!--Footer end ========================================================= -->
<script src="js/jquery.js"></script>
<script src="js/slick.js"></script>
<script src="js/slider.js"></script>
<script src="js/custom-select.js"></script>
<script src="js/main.js"></script>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18">
<g id="coins" transform="translate(0 0)">
<g id="Group_433" data-name="Group 433" transform="translate(0 0)">
<path id="Path_987" data-name="Path 987" d="M10.636,3.419v-1.4C10.636-.673,0-.673,0,2.017v8.2c0,1.058,1.655,1.717,3.647,1.951-.728.327-1.192.768-1.192,1.327v2.459C2.455,17.3,5.13,18,7.773,18s5.318-.7,5.318-2.049V14.715c2.5-.069,4.909-.767,4.909-2.042V5.3C18,3.6,13.762,2.973,10.636,3.419ZM5.318.818c2.912,0,4.5.811,4.5,1.227S8.23,3.272,5.318,3.272s-4.5-.811-4.5-1.227S2.407.818,5.318.818ZM.818,3.184a9.6,9.6,0,0,0,4.5.907,9.6,9.6,0,0,0,4.5-.907V3.59c-1.422.315-2.455.891-2.455,1.728V5.56a12.976,12.976,0,0,1-2.045.167c-2.912,0-4.5-.811-4.5-1.227V3.184Zm7.364,8.182c.078.047.159.092.246.136l-.246-.009ZM.818,5.638a9.6,9.6,0,0,0,4.5.907,13.868,13.868,0,0,0,2.045-.161V8.424a12.976,12.976,0,0,1-2.045.167c-2.912,0-4.5-.811-4.5-1.227V5.638Zm0,4.589V8.5a9.6,9.6,0,0,0,4.5.907,13.868,13.868,0,0,0,2.045-.161v2.039a12.976,12.976,0,0,1-2.045.167C2.407,11.454.818,10.644.818,10.227Zm11.455,5.727c0,.417-1.588,1.227-4.5,1.227s-4.5-.811-4.5-1.227V14.638a9.6,9.6,0,0,0,4.5.907,10.007,10.007,0,0,0,4.371-.831l.129,0v1.237Zm-4.5-1.227c-2.912,0-4.5-.811-4.5-1.227s1.588-1.227,4.5-1.227,4.5.811,4.5,1.227S10.684,14.727,7.773,14.727Zm9.409-2.045c0,.4-1.45,1.139-4.091,1.213V13.5c0-.511-.387-.924-1.011-1.241.2.008.4.014.6.014a9.6,9.6,0,0,0,4.5-.907v1.316Zm0-2.455c0,.417-1.588,1.227-4.5,1.227s-4.5-.811-4.5-1.227V8.911a9.6,9.6,0,0,0,4.5.907,9.6,9.6,0,0,0,4.5-.907Zm0-2.455c0,.417-1.588,1.227-4.5,1.227s-4.5-.811-4.5-1.227V6.456a9.6,9.6,0,0,0,4.5.907,9.6,9.6,0,0,0,4.5-.907Zm-4.5-1.227c-2.912,0-4.5-.811-4.5-1.227s1.588-1.227,4.5-1.227,4.5.811,4.5,1.227S15.593,6.545,12.682,6.545Z" transform="translate(0 0)" fill="#003197"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -0,0 +1,10 @@
<svg xmlns="http://www.w3.org/2000/svg" width="119.999" height="120" viewBox="0 0 119.999 120">
<g id="Logo" transform="translate(-29.062 -59.996)">
<g id="Logo-2" data-name="Logo" transform="translate(29.061 59.996)">
<path id="Path_2130" data-name="Path 2130" d="M12616.765,7727.4l24.631-24.623v-11.128h11.115l4.074-4.072-19.664-19.666h-19.254v25.03l-17.693,17.682Z" transform="translate(-12599.974 -7650.213)" fill="#003197" fill-rule="evenodd"/>
<path id="Path_2131" data-name="Path 2131" d="M14264.733,7065.507l19.662-19.663V7026.59h-25.043l-17.668-17.693-16.781,16.776,24.633,24.646h11.133v11.126Z" transform="translate(-14182.1 -7008.896)" fill="#aba17d" fill-rule="evenodd"/>
<path id="Path_2132" data-name="Path 2132" d="M13318.561,9440.119l-24.639-24.637H13282.8v-11.135l-4.074-4.055-19.662,19.664v19.254h25.018l17.7,17.691Z" transform="translate(-13241.381 -9336.902)" fill="#0056ff" fill-rule="evenodd"/>
<path id="Path_2133" data-name="Path 2133" d="M15011.035,8693.6h19.252v-25.043l17.691-17.664-16.783-16.775-24.639,24.627v11.131h-11.125l-4.061,4.072Z" transform="translate(-14927.979 -8591.292)" fill="#003197" fill-rule="evenodd"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
<g id="Group_1" data-name="Group 1" transform="translate(-650 -649)">
<rect id="Rectangle_92" data-name="Rectangle 92" width="40" height="40" rx="5" transform="translate(650 649)" fill="#003197"/>
<g id="mail_1_" data-name="mail (1)" transform="translate(658 657)">
<path id="Path_3258" data-name="Path 3258" d="M4,4H20a2.006,2.006,0,0,1,2,2V18a2.006,2.006,0,0,1-2,2H4a2.006,2.006,0,0,1-2-2V6A2.006,2.006,0,0,1,4,4Z" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
<path id="Path_3259" data-name="Path 3259" d="M22,6,12,13,2,6" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 793 B

View File

@ -0,0 +1,6 @@
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
<g id="Group_2" data-name="Group 2" transform="translate(-650 -568)">
<rect id="Rectangle_91" data-name="Rectangle 91" width="40" height="40" rx="5" transform="translate(650 568)" fill="#003197"/>
<path id="phone-call" d="M15.05,5A5,5,0,0,1,19,8.95M15.05,1A9,9,0,0,1,23,8.94m-1,7.98v3a2,2,0,0,1-2.18,2,19.79,19.79,0,0,1-8.63-3.07,19.5,19.5,0,0,1-6-6A19.79,19.79,0,0,1,2.12,4.18,2,2,0,0,1,4.11,2h3a2,2,0,0,1,2,1.72,12.84,12.84,0,0,0,.7,2.81,2,2,0,0,1-.45,2.11L8.09,9.91a16,16,0,0,0,6,6l1.27-1.27a2,2,0,0,1,2.11-.45,12.84,12.84,0,0,0,2.81.7A2,2,0,0,1,22,16.92Z" transform="translate(657.443 576.536)" fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 799 B

View File

@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40">
<g id="Group_3" data-name="Group 3" transform="translate(-650 -482)">
<rect id="Rectangle_143" data-name="Rectangle 143" width="40" height="40" rx="5" transform="translate(650 482)" fill="#003197"/>
<g id="user" transform="translate(660.629 490.768)">
<path id="Path_3281" data-name="Path 3281" d="M92.442,10.821a5.235,5.235,0,0,0,3.826-1.585A5.236,5.236,0,0,0,97.853,5.41a5.236,5.236,0,0,0-1.585-3.825,5.409,5.409,0,0,0-7.651,0A5.235,5.235,0,0,0,87.032,5.41a5.236,5.236,0,0,0,1.585,3.826A5.237,5.237,0,0,0,92.442,10.821ZM89.548,2.516a4.093,4.093,0,0,1,5.789,0,3.912,3.912,0,0,1,1.2,2.895,3.911,3.911,0,0,1-1.2,2.895,4.092,4.092,0,0,1-5.789,0,3.911,3.911,0,0,1-1.2-2.895,3.911,3.911,0,0,1,1.2-2.895Zm0,0" transform="translate(-83.213 0)" fill="#fff"/>
<path id="Path_3282" data-name="Path 3282" d="M18.7,253.739a13.364,13.364,0,0,0-.182-1.419,11.184,11.184,0,0,0-.349-1.427,7.05,7.05,0,0,0-.587-1.331,5.018,5.018,0,0,0-.885-1.153,3.9,3.9,0,0,0-1.271-.8,4.392,4.392,0,0,0-1.622-.294,1.647,1.647,0,0,0-.879.373c-.264.172-.572.371-.916.591a5.249,5.249,0,0,1-1.185.522,4.6,4.6,0,0,1-2.9,0,5.232,5.232,0,0,1-1.184-.522c-.341-.218-.649-.417-.917-.591a1.645,1.645,0,0,0-.879-.373,4.386,4.386,0,0,0-1.622.294,3.9,3.9,0,0,0-1.271.8,5.018,5.018,0,0,0-.884,1.153,7.063,7.063,0,0,0-.587,1.331,11.209,11.209,0,0,0-.349,1.427,13.273,13.273,0,0,0-.182,1.42c-.03.429-.045.875-.045,1.327a3.73,3.73,0,0,0,1.108,2.822,3.988,3.988,0,0,0,2.855,1.041H14.779a3.988,3.988,0,0,0,2.855-1.041,3.729,3.729,0,0,0,1.108-2.822c0-.453-.015-.9-.045-1.327Zm-1.97,3.2a2.685,2.685,0,0,1-1.947.678H3.962a2.685,2.685,0,0,1-1.947-.678,2.436,2.436,0,0,1-.7-1.868c0-.421.014-.837.042-1.236a11.972,11.972,0,0,1,.165-1.278,9.886,9.886,0,0,1,.307-1.258,5.75,5.75,0,0,1,.477-1.082,3.72,3.72,0,0,1,.65-.852,2.588,2.588,0,0,1,.845-.526,3.029,3.029,0,0,1,1.037-.2c.046.025.128.071.261.158.271.176.583.378.927.6a6.522,6.522,0,0,0,1.488.665,5.918,5.918,0,0,0,3.709,0,6.529,6.529,0,0,0,1.489-.665c.353-.226.656-.421.927-.6.133-.087.215-.134.261-.158a3.031,3.031,0,0,1,1.037.2,2.591,2.591,0,0,1,.845.526,3.71,3.71,0,0,1,.65.852,5.73,5.73,0,0,1,.478,1.082,9.863,9.863,0,0,1,.307,1.258,12.071,12.071,0,0,1,.165,1.279h0c.028.4.042.813.042,1.235a2.436,2.436,0,0,1-.7,1.868Zm0,0" transform="translate(0 -236.465)" fill="#fff"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

BIN
shablon/images/wallet.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 705 B

View File

@ -1,5 +1,5 @@
// //
// selector ============= // selector =============
@ -32,6 +32,13 @@ let chat_alert = document.querySelectorAll('.chat_alert');
let chat_burger = document.querySelector('.chat_burger'); let chat_burger = document.querySelector('.chat_burger');
let chat_people = document.querySelector('.chat_people'); let chat_people = document.querySelector('.chat_people');
let register_content = document.querySelector('.register_content');
let register_content_2 = document.querySelector('.register_content_2');
let seller_btn = document.querySelector('.seller_btn');
let seller_info = document.querySelector('.seller_info');
// Fixed header ==================================== // Fixed header ====================================
@ -95,6 +102,8 @@ window.onclick = function (e) {
if (register != undefined) { if (register != undefined) {
if (register.classList.contains('active') && !e.target.closest('.register_body')) { if (register.classList.contains('active') && !e.target.closest('.register_body')) {
register.classList.remove('active'); register.classList.remove('active');
selectElement('body').classList.remove('active');
} }
} }
@ -105,19 +114,29 @@ window.onclick = function (e) {
} }
if (chat_people != undefined) { if (chat_people != undefined) {
if (chat_people.classList.contains('active') && !e.target.closest('.chat_burger') ) { if (chat_people.classList.contains('active') && !e.target.closest('.chat_burger')) {
chat_people.classList.remove('active'); chat_people.classList.remove('active');
} }
} }
if (seller_info != undefined) {
if (seller_info.classList.contains('active') && !e.target.closest('.seller_inner')) {
seller_info.classList.remove('active');
selectElement('body').classList.remove('active');
}
}
if (selectElement('.links').classList.contains('active') && !e.target.closest('.profile_head') && !e.target.closest('.links')) { if (selectElement('.links').classList.contains('active') && !e.target.closest('.profile_head') && !e.target.closest('.links')) {
selectElement('.links').classList.remove('active'); selectElement('.links').classList.remove('active');
selectElement('body').classList.remove('active');
} }
if (selectElement('.links_bg').classList.contains('active') && !e.target.closest('.profile_head') && !e.target.closest('.links')) { if (selectElement('.links_bg').classList.contains('active') && !e.target.closest('.profile_head') && !e.target.closest('.links')) {
selectElement('.links_bg').classList.remove('active'); selectElement('.links_bg').classList.remove('active');
selectElement('body').classList.remove('active');
} }
} }
@ -127,6 +146,7 @@ selectElement('.burger').addEventListener('click', function () {
sleep(2).then(() => { sleep(2).then(() => {
selectElement('.links_bg').classList.toggle('active'); selectElement('.links_bg').classList.toggle('active');
selectElement('.links').classList.toggle('active'); selectElement('.links').classList.toggle('active');
selectElement('body').classList.toggle('active');
}); });
}); });
@ -149,6 +169,8 @@ if (register_btn != undefined) {
register.classList.toggle('active'); register.classList.toggle('active');
btn_2.classList.add('active'); btn_2.classList.add('active');
btn_1.classList.remove('active'); btn_1.classList.remove('active');
selectElement('body').classList.add('active');
register_content.classList.add('active'); register_content.classList.add('active');
register_content_2.classList.remove('active'); register_content_2.classList.remove('active');
@ -164,6 +186,8 @@ if (log_in != undefined) {
register.classList.toggle('active'); register.classList.toggle('active');
btn_1.classList.add('active'); btn_1.classList.add('active');
btn_2.classList.remove('active'); btn_2.classList.remove('active');
selectElement('body').classList.add('active');
register_content.classList.remove('active'); register_content.classList.remove('active');
register_content_2.classList.add('active'); register_content_2.classList.add('active');
@ -211,14 +235,14 @@ if (eye_off != undefined) {
x.addEventListener('click', function () { x.addEventListener('click', function () {
sleep(2).then(() => { sleep(2).then(() => {
pass.type = "password"; pass.type = "text";
pass_2.type = "password"; pass_2.type = "text";
eye_on.forEach(e => { eye_on.forEach(e => {
e.classList.toggle('active'); e.classList.add('active');
}) })
eye_off.forEach(w => { eye_off.forEach(w => {
w.classList.toggle('active'); w.classList.add('active');
}) })
}); });
}); });
@ -230,14 +254,14 @@ if (eye_on != undefined) {
q.addEventListener('click', function () { q.addEventListener('click', function () {
sleep(2).then(() => { sleep(2).then(() => {
pass.type = "text"; pass.type = "password";
pass_2.type = "text"; pass_2.type = "password";
eye_on.forEach(e => { eye_on.forEach(e => {
e.classList.toggle('active'); e.classList.remove('active');
}) })
eye_off.forEach(w => { eye_off.forEach(w => {
w.classList.toggle('active'); w.classList.remove('active');
}) })
}); });
}); });
@ -264,6 +288,15 @@ if (chat_burger != undefined) {
}); });
} }
if (seller_btn != undefined) {
seller_btn.addEventListener('click', function () {
sleep(2).then(() => {
seller_info.classList.add('active');
selectElement('body').classList.add('active');
});
});
}
// if (person != undefined) { // if (person != undefined) {
// person.forEach(y => { // person.forEach(y => {
// y.addEventListener('click', function () { // y.addEventListener('click', function () {

View File

@ -0,0 +1,3 @@
$(document).ready(function() {
$(document).scrollTop( 0 );
})

View File

@ -4,7 +4,7 @@ $(".intro_slider").slick({
slidesToShow: 1, slidesToShow: 1,
slidesToScroll: 1, slidesToScroll: 1,
arrows: true, arrows: true,
autoplay: false, autoplay: true,
dots: true, dots: true,
autoplaySpeed: 3000, autoplaySpeed: 3000,
pauseOnHover: false, pauseOnHover: false,
@ -26,9 +26,9 @@ $(".advert").slick({
slidesToShow: 1, slidesToShow: 1,
slidesToScroll: 1, slidesToScroll: 1,
arrows: false, arrows: false,
autoplay: false, autoplay: true,
dots: true, dots: true,
autoplaySpeed: 1000, autoplaySpeed: 2500,
pauseOnHover: false, pauseOnHover: false,

View File

@ -136,7 +136,6 @@ li {
--item-img-paddimg: 0; --item-img-paddimg: 0;
--item--align: unset; --item--align: unset;
--cursor: unset; --cursor: unset;
--padding-row: 0;
} }
[data-theme="row"] { [data-theme="row"] {
@ -154,7 +153,6 @@ li {
--item-img-paddimg: 10px 25px; --item-img-paddimg: 10px 25px;
--item--align: center; --item--align: center;
--cursor: pointer; --cursor: pointer;
--padding-row: 0 7px;
} }
@ -443,7 +441,6 @@ li {
.profile_head { .profile_head {
display: flex; display: flex;
align-items: center; align-items: center;
margin-right: 40px;
cursor: pointer; cursor: pointer;
} }
@ -465,8 +462,9 @@ li {
position: absolute; position: absolute;
/* top: calc(100% + 52px); */ /* top: calc(100% + 52px); */
bottom: -515px; bottom: -440px;
left: -30px; right: 0;
/* left: -30px; */
width: 350px; width: 350px;
@ -499,16 +497,30 @@ li {
.profile_item { .profile_item {
display: flex; display: flex;
align-items: center; align-items: center;
margin-right: 20px;
padding: 25px 30px; cursor: default;
border-bottom: 1px solid rgba(0, 0, 0, .3);
} }
.profile_item:hover { .p-0 {
padding: 0 !important;
}
.p-0 .profile_text {
white-space: nowrap;
}
.profile_drop .profile_item {
padding: 25px 30px;
margin-right: 0;
border-bottom: 1px solid rgba(0, 0, 0, .3);
cursor: pointer;
}
.profile_drop .profile_item:hover {
background: #f5f5f5; background: #f5f5f5;
} }
.profile_item:last-child { .profile_drop .profile_item:last-child {
border: none; border: none;
border-bottom-left-radius: 10px; border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px; border-bottom-right-radius: 10px;
@ -544,6 +556,96 @@ li {
line-height: 1.3; line-height: 1.3;
} }
/* Balance ====================== */
.balance_tabs {
display: flex;
}
.balance_link {
padding: 25px 15px;
border-radius: 5px;
cursor: pointer;
width: 300px;
text-align: center;
background: #F2F6FF;
margin-right: 30px;
font-size: 18px;
font-weight: 400;
line-height: 1.3;
}
.balance_link.active {
background: var(--blue);
color: #fff;
}
.balance_link:last-child {
margin-right: 0;
}
.balance_box {
margin-top: 50px;
}
.balance_source {
display: none;
}
.balance_source.active {
display: block;
}
.post_form-3 {
display: flex;
align-items: end;
flex-wrap: wrap;
-ms-flex-wrap: wrap;
-o-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
-moz-flex-wrap: wrap;
position: relative;
margin: -25px -20px 0;
}
.send_btn {
background: var(--blue);
color: #fff;
border: none;
border-radius: 5px;
padding: 20px 50px;
cursor: pointer;
font-size: var(--text-18);
font-weight: 400;
line-height: 1;
display: block;
}
.post_footer-text {
color: #E2E2E2;
font-size: 20px;
line-height: 1.3;
font-weight: 400;
display: block;
width: 100%;
margin-top: 30px;
margin: 30px 20px 0;
}
.post_footer-text span {
color: red;
}
.post_form-3 .post_upload_item {
margin-bottom: 0 !important;
}
.post_form-3 .upload_group label {
padding: 20px;
}
/* Change Password ============================================= */ /* Change Password ============================================= */
.password { .password {
@ -749,6 +851,11 @@ li {
line-height: 1.4; line-height: 1.4;
} }
.head_group {
display: flex;
align-items: center;
}
/* Header ============================================= */ /* Header ============================================= */
.header { .header {
-webkit-box-shadow: 0px 6px 4px -1px var(--rgba-black); -webkit-box-shadow: 0px 6px 4px -1px var(--rgba-black);
@ -1203,30 +1310,6 @@ li {
text-align: center; text-align: center;
} }
.link {
margin: 30px 0 0 0;
display: flex;
align-items: center;
justify-content: center;
}
.home_link {
display: block;
}
.home_link span {
display: block;
margin: 0 auto;
padding: 12px 40px;
background: var(--blue);
color: #fff;
font-size: 16px;
font-weight: 500;
line-height: 1.3;
border-radius: 5px;
cursor: pointer;
}
/* Product =================================================== */ /* Product =================================================== */
.product { .product {
@ -1467,9 +1550,7 @@ li {
} }
.item_photo { .item_photo {
/* height: 180px; */ height: 180px;
height: auto;
max-height: 200px;
width: var(--item-element-width); width: var(--item-element-width);
border-right: var(--item-element-border); border-right: var(--item-element-border);
@ -1494,7 +1575,6 @@ li {
border-right: var(--item-element-border); border-right: var(--item-element-border);
margin: var(--item-element-margin); margin: var(--item-element-margin);
padding: var(--padding-row);
} }
.product_item .item_group:last-child { .product_item .item_group:last-child {
@ -1508,13 +1588,6 @@ li {
color: var(--blue); color: var(--blue);
margin-top: 20px; margin-top: 20px;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
} }
.item_sub_title { .item_sub_title {
@ -1524,13 +1597,6 @@ li {
color: #000; color: #000;
text-align: var(--item--align); text-align: var(--item--align);
margin: 10px 0; margin: 10px 0;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
} }
.item_name { .item_name {
@ -1545,7 +1611,7 @@ li {
font-size: var(--text-16); font-size: var(--text-16);
font-weight: 400; font-weight: 400;
line-height: 1.4; line-height: 1.4;
color: #a8a8a8; color: var(--rgba-black);
} }
.item_btn { .item_btn {
@ -2428,6 +2494,20 @@ li {
color: red; color: red;
} }
.post_in label {
font-size: var(--text-18);
font-weight: 400;
line-height: 1;
margin-left: 20px;
margin-bottom: 20px;
display: block;
}
.post_in label span {
color: red;
}
.post_comment { .post_comment {
width: calc(100% - 40px); width: calc(100% - 40px);
margin: 25px 20px; margin: 25px 20px;
@ -2498,7 +2578,8 @@ li {
} }
.bank_form .post_upload_box { .bank_form .post_upload_box {
width: calc(67% - 45px); /* width: calc(67% - 45px); */
width: 550px;
margin: 25px 20px 0; margin: 25px 20px 0;
} }
@ -3512,6 +3593,67 @@ li {
/* Basket end ======================================= */ /* Basket end ======================================= */
/* Replenishment History ======================================= */
.history_table {
width: 100%;
overflow-x: auto;
}
.history_table table {
width: 100%;
text-align: center;
border: 1px solid #F1F1F1;
border-collapse: collapse;
border-radius: 20px;
}
.history_table table td {
border: 1px solid #F1F1F1;
padding: 30px 7px;
font-size: 20px;
font-weight: 500;
line-height: 1.3;
}
/* .history_table table tbody tr:last-child td:first-child {
border-bottom-left-radius: 20px;
}
.history_table table tbody tr:last-child td:last-child {
border-bottom-right-radius: 20px;
}
.history_table table th:first-child {
border-top-left-radius: 5px;
}
.history_table table th:last-child {
border-top-right-radius: 5px;
} */
.history_table table th {
color: #fff;
background: var(--blue);
padding: 30px 10px;
font-size: 16px;
font-weight: 400;
line-height: 1.3;
}
.approved {
color: #01BF34;
}
.denied {
color: #FF0000;
}
/* Replenishment History end ======================================= */
/* Media Query /* Media Query
======================================================= */ ======================================================= */
@ -3739,7 +3881,7 @@ li {
} }
.profile_drop { .profile_drop {
bottom: -515px; bottom: -441px;
} }
} }
@ -3807,9 +3949,9 @@ li {
height: 120px; height: 120px;
} }
/* .item_photo { .item_photo {
height: 150px; height: 150px;
} */ }
.cat_tabs { .cat_tabs {
margin-bottom: 70px; margin-bottom: 70px;
@ -3822,13 +3964,14 @@ li {
width: calc(50% - 40px); width: calc(50% - 40px);
margin-bottom: 30px; margin-bottom: 30px;
} }
/*
/*
.tab_link:nth-child(2) { .tab_link:nth-child(2) {
margin-right: 0; margin-right: 0;
} */ } */
.profile_drop { .profile_drop {
bottom: -505px; bottom: -431px;
} }
/* Basket =============== */ /* Basket =============== */
@ -3890,9 +4033,9 @@ li {
border-right: 1px solid var(--rgba-black); border-right: 1px solid var(--rgba-black);
} }
/* .item_photo { .item_photo {
height: 120px; height: 120px;
} */ }
.footer_content { .footer_content {
align-items: unset; align-items: unset;
@ -3973,6 +4116,16 @@ li {
width: calc(40% - 20px); width: calc(40% - 20px);
} }
/* Replenishment History ======================================= */
.history_table {
border: 1px solid #f1f1f1;
}
.history_table table {
width: 1250px;
}
} }
@media(max-width: 1000px) { @media(max-width: 1000px) {
@ -4132,9 +4285,9 @@ li {
} }
.profile_drop { .profile_drop {
right: -35px; right: 0;
left: unset; left: unset;
bottom: -517px; bottom: -416px;
width: 320px; width: 320px;
} }
@ -4464,6 +4617,31 @@ li {
.bank_form .post_upload_box .post_upload_item { .bank_form .post_upload_box .post_upload_item {
margin: 0; margin: 0;
} }
/* Replenishment History ======================================= */
.history_table {
border: 1px solid #f1f1f1;
}
.history_table table {
width: 900px;
}
.history_table table th {
padding: 20px 5px;
font-size: 14px;
}
.history_table table td {
padding: 20px 7px;
font-size: 16px;
}
.cat_end {
margin-top: 60px;
}
} }
@media(max-width: 700px) { @media(max-width: 700px) {
@ -4472,6 +4650,22 @@ li {
--text-18: 16px --text-18: 16px
} }
.profile_head {
flex-direction: column-reverse;
-ms-flex-direction: column-reverse;
-moz-flex-direction: column-reverse;
-o-flex-direction: column-reverse;
-webkit-flex-direction: column-reverse;
}
.profile_head .profile_item{
margin-top: 10px;
}
.profile_head .profile_item:last-child {
margin-top: 0;
}
.new_group { .new_group {
flex-direction: column; flex-direction: column;
-ms-flex-direction: column; -ms-flex-direction: column;
@ -4543,6 +4737,7 @@ li {
width: 100%; width: 100%;
margin-right: 0; margin-right: 0;
margin-bottom: 20px; margin-bottom: 20px;
flex-direction: row;
} }
.intro_slider, .intro_slider,
@ -4752,10 +4947,6 @@ li {
padding: 0 15px; padding: 0 15px;
} }
.home_link span {
font-size: 14px;
}
.links { .links {
width: 70%; width: 70%;
} }

View File

@ -9,7 +9,7 @@ const selectElement = function (element) {
// selector end============= // selector end=============
let drop = document.querySelectorAll('.profile_drop'); let drop = document.querySelectorAll('.profile_drop');
let profile_head = document.querySelectorAll('.profile_head'); let profile_head = document.querySelectorAll('.profile_bio');
let register = document.querySelector('.register'); let register = document.querySelector('.register');
let register_btn = document.querySelectorAll('.register_btn'); let register_btn = document.querySelectorAll('.register_btn');
let log_in = document.querySelectorAll('.log_in'); let log_in = document.querySelectorAll('.log_in');

View File

@ -102,85 +102,91 @@ code = "main-top"
</div> </div>
{% else %} {% else %}
<div class="profile"> <div class="head_group">
<div class="profile_bio"> <div class="profile_head">
<div class="profile_head"> <a href="{{ 'kabinet/messages'|page }}" class="profile_item p-0" style="cursor: pointer;">
<div class="profile_icon"> <div class="profile_icon">
<img src="{{'assets/images/svg/user-plus.svg'|theme}}" alt=""> <img src="{{'assets/images/svg/inbox.svg'|theme}}" alt="">
</div> </div>
<div class="profile_text"> <div class="profile_text">
{{user.name ? user.name : user.email}} {{ 'auth.messages'|_ }}
</div> </div>
<div class="prodile_arrow"> </a>
<img src="{{'assets/images/svg/arrow-down.svg'|theme}}" alt="">
<div class="profile_item p-0">
<div class="profile_icon">
<img src="{{'assets/images/svg/coins.svg'|theme}}" alt="">
</div>
<div class="profile_text">
{{user.balance}} TMT
</div> </div>
</div> </div>
<div class="profile_drop"> </div>
<div class="profile_item">
<div class="profile_icon">
<img src="{{'assets/images/svg/coins.svg'|theme}}" alt="">
</div>
<div class="profile_text">
{{'account.balance'|_}}: {{user.balance}} TMT
</div>
</div>
<a href="{{'kabinet/profile'|page}}" class="profile_item"> <div class="profile">
<div class="profile_bio">
<div class="profile_head">
<div class="profile_icon"> <div class="profile_icon">
<img src="{{'assets/images/svg/user-plus.svg'|theme}}" alt=""> <img src="{{'assets/images/svg/user-plus.svg'|theme}}" alt="">
</div> </div>
<div class="profile_text"> <div class="profile_text">
{{ 'auth.personal_data'|_ }} {{user.name ? user.name : user.email}}
</div> </div>
</a> <div class="prodile_arrow">
<img src="{{'assets/images/svg/arrow-down.svg'|theme}}" alt="">
</div>
</div>
<div class="profile_drop">
<a href="{{'kabinet/my_offers'|page}}" class="profile_item"> <a href="{{'kabinet/profile'|page}}" class="profile_item">
<div class="profile_icon"> <div class="profile_icon">
<img src="{{'assets/images/svg/clipboard.svg'|theme}}" alt=""> <img src="{{'assets/images/svg/user-plus.svg'|theme}}" alt="">
</div> </div>
<div class="profile_text"> <div class="profile_text">
{{ 'auth.my_announces'|_ }} {{ 'auth.personal_data'|_ }}
</div> </div>
</a> </a>
<a href="{{ 'kabinet/messages'|page }}" class="profile_item"> <a href="{{'kabinet/my_offers'|page}}" class="profile_item">
<div class="profile_icon"> <div class="profile_icon">
<img src="{{'assets/images/svg/inbox.svg'|theme}}" alt=""> <img src="{{'assets/images/svg/clipboard.svg'|theme}}" alt="">
</div> </div>
<div class="profile_text"> <div class="profile_text">
{{ 'auth.messages'|_ }} {{ 'auth.my_announces'|_ }}
</div> </div>
</a> </a>
<a href="{{ 'kabinet/balance'|page }}" class="profile_item"> <a href="{{ 'kabinet/balance'|page }}" class="profile_item">
<div class="profile_icon"> <div class="profile_icon">
<img src="{{'assets/images/wallet.png'|theme}}" alt=""> <img src="{{'assets/images/wallet.png'|theme}}" alt="">
</div> </div>
<div class="profile_text"> <div class="profile_text">
{{'account.fill_up_balance'|_}} {{'account.fill_up_balance'|_}}
</div> </div>
</a> </a>
<a href="#" data-request="onLogout" data-request-data="redirect: '/'" class="profile_item"> <a href="{{ 'kabinet/add_offer'|page }}" class="profile_item">
<div class="profile_icon"> <div class="profile_icon">
<img src="{{'assets/images/svg/log-out.svg'|theme}}" alt=""> <img src="{{'assets/images/svg/add.svg'|theme}}" alt="">
</div> </div>
<div class="profile_text"> <div class="profile_text">
{{ 'auth.logout'|_ }} {{ 'auth.add_announce'|_ }}
</div> </div>
</a> </a>
<a href="#" data-request="onLogout" data-request-data="redirect: '/'" class="profile_item">
<div class="profile_icon">
<img src="{{'assets/images/svg/log-out.svg'|theme}}" alt="">
</div>
<div class="profile_text">
{{ 'auth.logout'|_ }}
</div>
</a>
</div>
</div> </div>
</div> </div>
<a href="{{ 'kabinet/add_offer'|page }}" class="add_post_btn">
<div class="post_icon">
<img src="{{'assets/images/svg/add.svg'|theme}}" alt="">
</div>
<div class="post_text">
{{ 'auth.add_announce'|_ }}
</div>
</a>
</div> </div>
{% endif %} {% endif %}
</div> </div>
@ -236,14 +242,14 @@ code = "main-top"
</div> </div>
</div> </div>
<div class="profile_drop"> <div class="profile_drop">
<div class="profile_item"> <!-- <div class="profile_item">
<div class="profile_icon"> <div class="profile_icon">
<img src="{{'assets/images/svg/coins.svg'|theme}}" alt=""> <img src="{{'assets/images/svg/coins.svg'|theme}}" alt="">
</div> </div>
<div class="profile_text"> <div class="profile_text">
{{'account.balance'|_}}: {{user.balance}} TMT {{'account.balance'|_}}: {{user.balance}} TMT
</div> </div>
</div> </div> -->
<a href="{{'kabinet/profile'|page}}" class="profile_item"> <a href="{{'kabinet/profile'|page}}" class="profile_item">
<div class="profile_icon"> <div class="profile_icon">
@ -263,14 +269,14 @@ code = "main-top"
</div> </div>
</a> </a>
<a href="{{ 'kabinet/messages'|page }}" class="profile_item"> <!-- <a href="{{ 'kabinet/messages'|page }}" class="profile_item">
<div class="profile_icon"> <div class="profile_icon">
<img src="{{'assets/images/svg/inbox.svg'|theme}}" alt=""> <img src="{{'assets/images/svg/inbox.svg'|theme}}" alt="">
</div> </div>
<div class="profile_text"> <div class="profile_text">
{{ 'auth.messages'|_ }} {{ 'auth.messages'|_ }}
</div> </div>
</a> </a> -->
<a href="{{ 'kabinet/balance'|page }}" class="profile_item"> <a href="{{ 'kabinet/balance'|page }}" class="profile_item">
<div class="profile_icon"> <div class="profile_icon">
@ -281,7 +287,6 @@ code = "main-top"
</div> </div>
</a> </a>
<a href="#" data-request="onLogout" data-request-data="redirect: '/'" class="profile_item"> <a href="#" data-request="onLogout" data-request-data="redirect: '/'" class="profile_item">
<div class="profile_icon"> <div class="profile_icon">
<img src="{{'assets/images/svg/log-out.svg'|theme}}" alt=""> <img src="{{'assets/images/svg/log-out.svg'|theme}}" alt="">