vr-shopxo-source/app/index/view/default/safety/index.html

56 lines
1.9 KiB
HTML
Raw Normal View History

2024-04-15 02:25:01 +00:00
{{:ModuleInclude('public/header')}}
2018-12-28 10:58:37 +00:00
<!-- header top nav -->
2024-04-15 02:25:01 +00:00
{{:ModuleInclude('public/header_top_nav')}}
2018-12-28 10:58:37 +00:00
2023-08-27 08:59:15 +00:00
<!-- header simple nav -->
{{:ModuleInclude('public/header_nav_simple', [
'search' => '1',
])}}
2018-12-28 10:58:37 +00:00
<!-- content -->
<div class="am-container user-main">
<!-- user menu start -->
2024-04-15 02:25:01 +00:00
{{:ModuleInclude('public/user_menu')}}
2018-12-28 10:58:37 +00:00
<!-- user menu end -->
<!-- content start -->
<div class="user-content">
<div class="user-content-body">
2023-08-27 08:59:15 +00:00
<!-- user center title -->
2024-04-15 02:25:01 +00:00
{{:ModuleInclude('public/user_center_main_title')}}
2023-08-27 08:59:15 +00:00
2018-12-28 10:58:37 +00:00
{{foreach $safety_panel_list as $v}}
2022-11-20 13:29:44 +00:00
<section class="am-panel am-panel-default am-radius am-panel-{{if (empty($data[$v['type']]) and empty($v['msg'])) or ($v['type'] eq 'logout')}}danger{{else /}}default{{/if}}">
2018-12-28 10:58:37 +00:00
<header class="am-panel-hd">
<h3 class="am-panel-title">{{$v.title}}</h3>
</header>
<div class="am-panel-bd o-h">
<div class="am-fl panel-left">
{{if !empty($v.msg)}}
2023-01-26 09:06:20 +00:00
<p class="am-text-grey">{{$v.msg}}</p>
2018-12-28 10:58:37 +00:00
{{/if}}
{{if empty($data[$v['type']]) and !empty($v['tips'])}}
2022-11-20 13:29:44 +00:00
{{if !empty($v['no_msg'])}}
{{$v.no_msg}}
{{/if}}
2018-12-28 10:58:37 +00:00
{{else /}}
2022-11-20 13:29:44 +00:00
{{if !empty($v['ok_msg']) and !empty($data[$v['type']])}}
2018-12-28 10:58:37 +00:00
{{:str_replace('#accounts#', $data[$v['type']], $v['ok_msg'])}}
{{/if}}
{{/if}}
{{if !empty($v['tips'])}}
2023-01-26 09:06:20 +00:00
<p class="am-margin-top-xs am-text-grey">{{$v.tips}}</p>
2018-12-28 10:58:37 +00:00
{{/if}}
</div>
2023-01-26 09:06:20 +00:00
<a href="{{$v.url}}" class="am-btn am-btn-secondary am-radius am-btn-xs am-fr">{{if empty($v['submit_text'])}}{{if empty($data[$v['type']]) and empty($v['msg'])}}{{:MyLang('bind_title')}}{{else /}}{{:MyLang('modify_title')}}{{/if}}{{else /}}{{$v.submit_text}}{{/if}}</a>
2018-12-28 10:58:37 +00:00
</div>
</section>
{{/foreach}}
</div>
</div>
<!-- content end -->
</div>
<!-- footer start -->
2024-04-15 02:25:01 +00:00
{{:ModuleInclude('public/footer')}}