logout.html 1.0 KB
Newer Older
D
devil_gong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
{{include file="public/header" /}}

<!-- header nav start -->
{{if isset($is_header) and $is_header eq 1}}
    <!-- header top nav -->
    {{include file="public/header_top_nav" /}}

    <!-- search -->
    {{include file="public/nav_search" /}}

    <!-- header nav -->
    {{include file="public/header_nav" /}}

    <!-- goods category -->
    {{include file="public/goods_category" /}}
{{/if}}
<!-- header nav end -->

<!-- conntent start  -->
G
gongfuxiang 已提交
20 21 22 23 24 25
<div class="am-g my-content tips-success">
    <div class="am-u-md-6 am-u-sm-centered am-text-center">
        <i class="am-icon-check-circle am-icon-sm"></i>
        <span class="msg">{{$msg}}</span>
        <div class="tips-nav">
            <a href="{{$Think.__MY_URL__}}" class="am-btn am-btn-secondary am-radius">回到首页</a>
D
devil_gong 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
        </div>
    </div>
</div>
<!-- conntent end  -->

{{include file="public/footer" /}}

{{if !empty($body_html)}}
    {{$body_html|raw}}
{{/if}}

<script type="text/javascript">
setTimeout(function()
{
    window.location.href = '{{$Think.__MY_URL__}}';
}, 1500);
</script>