2023-08-25 21:39:39 +00:00
|
|
|
[account]
|
|
|
|
|
paramCode = "code"
|
|
|
|
|
forceSecure = 0
|
|
|
|
|
requirePassword = 0
|
|
|
|
|
|
|
|
|
|
[staticMenu]
|
|
|
|
|
code = "aside-menu"
|
|
|
|
|
|
|
|
|
|
[localePicker]
|
|
|
|
|
forceUrl = 0
|
|
|
|
|
|
|
|
|
|
[seller]
|
2023-08-26 07:19:46 +00:00
|
|
|
|
|
|
|
|
[session]
|
|
|
|
|
security = "all"
|
|
|
|
|
redirect = "seller/home"
|
|
|
|
|
checkToken = 0
|
2023-08-25 21:39:39 +00:00
|
|
|
==
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="{{activeLocale}}" class="light" id="isDark">
|
|
|
|
|
<!-- BEGIN: Head -->
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<link href="{{'assets/seller/images/logo.svg'|theme}}" rel="shortcut icon">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
|
|
|
|
<title>NURGUL-{{ this.page.meta_title }}</title>
|
|
|
|
|
<!-- BEGIN: CSS Assets-->
|
|
|
|
|
<link rel="stylesheet" href="{{'assets/seller/css/app.css'|theme}}" />
|
|
|
|
|
<!-- END: CSS Assets-->
|
|
|
|
|
{% styles %}
|
|
|
|
|
</head>
|
|
|
|
|
<!-- END: Head -->
|
|
|
|
|
|
|
|
|
|
{% if user %}
|
|
|
|
|
|
|
|
|
|
<body class="py-5 md:py-0">
|
|
|
|
|
|
|
|
|
|
{% flash %}
|
|
|
|
|
<p data-control="flash-message" class="flash-message fade {{ type }}" data-interval="5">
|
|
|
|
|
{{ message }}
|
|
|
|
|
</p>
|
|
|
|
|
{% endflash %}
|
|
|
|
|
|
|
|
|
|
{% partial 'seller/mobile-menu' %}
|
|
|
|
|
|
|
|
|
|
{% partial 'seller/top-bar' %}
|
|
|
|
|
|
|
|
|
|
<div class="flex overflow-hidden">
|
|
|
|
|
|
|
|
|
|
{% partial 'seller/side-menu' %}
|
|
|
|
|
|
|
|
|
|
<div class="content">
|
|
|
|
|
{% page %}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- BEGIN: Dark Mode Switcher-->
|
|
|
|
|
<div class="dark-mode-switcher shadow-md fixed bottom-0 right-0 box dark:bg-dark-2 border rounded-full w-40 h-12 flex items-center justify-center z-50 mb-10 mr-10">
|
2023-08-26 07:19:46 +00:00
|
|
|
<div class="mr-4 text-gray-700 dark:text-gray-300">{{'isDark.mode'|_}}</div>
|
2023-08-25 21:39:39 +00:00
|
|
|
<div class="dark-mode-switcher__toggle border"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- END: Dark Mode Switcher-->
|
|
|
|
|
<!-- BEGIN: JS Assets-->
|
|
|
|
|
<script src="{{'assets/seller/js/app.js'|theme}}"></script>
|
|
|
|
|
<script src="{{'assets/jquery.js'|theme}}"></script>
|
2023-08-26 07:19:46 +00:00
|
|
|
<!-- <script src="{{'assets/jquery.session.js'|theme}}"></script> -->
|
2023-08-25 21:39:39 +00:00
|
|
|
<!-- END: JS Assets-->
|
|
|
|
|
{% framework extras %}
|
|
|
|
|
{% scripts %}
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
{% else %}
|
|
|
|
|
|
|
|
|
|
{% flash %}
|
|
|
|
|
<p data-control="flash-message" class="flash-message fade {{ type }}" data-interval="5">
|
|
|
|
|
{{ message }}
|
|
|
|
|
</p>
|
|
|
|
|
{% endflash %}
|
|
|
|
|
|
|
|
|
|
{% partial 'seller/login-page' %}
|
|
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
2023-08-31 09:46:41 +00:00
|
|
|
</html>
|