Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

libai / footsen

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • footsen
  • footseen
  • Nesting
  • logOff
  • index.html
Find file
BlameHistoryPermalink
  • agan's avatar
    修改 · 4c104e1b
    agan committed a year ago
    4c104e1b
index.html 4.14 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
<!doctype html>
<html lang="zh">

<head>
    <meta charset="UTF-8">
    <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport">
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
    <meta content="telephone=no" name="format-detection">
    <title>賬號管理</title>
    <link rel="stylesheet" href="https://zhiboweb.yazhaiyabo.com/simper/css/reset.css">
    <script src="https://apps.bdimg.com/libs/zepto/1.1.4/zepto.min.js"></script>
    <script src="../../lib/fsize.js"></script>
    <style>
        body {
            background: #111111;
        }

        .main {
            width: 10rem;
            height: 100vh;
            background: #111111;
            position: relative;
            font-size: 0.373rem;
        }

        .mCon {
            padding: 0.6rem 0.4rem 1rem 0.4rem;
            line-height: 0.8rem;
            color: #ccc;
        }

        .w {
            font-weight: bold;
        }

        .mt {
            margin-top: 0.56rem;
        }

        .b {
            color: #00ffff;
        }

        body.body_ft {
            background: #fff;
        }

        .body_ft .main {
            width: 10rem;
            height: 100vh;
            background: #fff;
            position: relative;
            font-size: 0.373rem;
        }

        .body_ft .w {
            color: #ea277d;
            font-weight: bold;
        }

        .body_ft .b {
            color: #ea277d;
        }
    </style>
</head>

<body>
    <div class="main">
        <div class="mCon">
            <p class="b w">賬號安全説明</p>
            <p class="w">1 為什麼要綁定手機號?</p>
            <p>綁定手機號可以在賬號設置更改時,收到驗證碼,及時提示您賬號非本人操作的異常情況;並且可以快捷的通過驗證碼進行賬號設置或其他功能使用,省略輸入密碼的繁瑣環節。</p>
            <p class="mt w">2 為什麼要綁定多個賬號登錄渠道?</p>
            <p>賬號綁定後,您可以任意時間地點用任意綁定的賬號登錄同一個賬號,並設置顯示您的社群賬號到你的個人資料卡,為你結交更多朋友</p>
            <p class="mt w">3 賬號遺失怎麼辦?</p>
            <p>如果賬號綁定了手機號,可通過輸入手機號並接收驗證碼訊息找回賬號。</p>
            <p>如果賬號未綁定手機號,可先找到第三方社群的登錄賬號,再次使用註冊時的第三方登錄賬號進行登錄,即可找回賬號。</p>
            <p>如果以上方法都無法找回,請聯繫客服進行處理。</p>
            <p class="mt b">
                賬號所有者
            </p>
            <p>你擁有此賬號的賬號管理所有權。如果你想要註銷賬號,請確保你的賬號沒有未提現的財產或與我們簽訂的合約。刪除賬號是永久性操作,刪除賬號後,您將無法找回分享到平台上的所有內容,你的好友信息和關注的內容也將一併刪除。如果你確定放棄所有在該平台的所有內容,請操作
                <span class="goLogOff b">註銷賬號></span>
            </p>
        </div>
    </div>
    <script src="../../lib/jquery-3.1.1.min.js"></script>
    <script>
        if (url_get_params().appname != "com.happy.live" && url_get_params().appname != "com.yzfirefire.live.ios" && url_get_params().appname != "com.ft.chat.ios") {
            $('body').addClass('body_ft');
        }


        $('.goLogOff').on('click', function () {
            window.location.href = 'logOff.html' + location.search;
        })

        function url_get_params() {
            var url = location.href;
            var theRequest = new Object();
            if (url.indexOf("?") != -1) {
                var str = url.substr(url.indexOf("?") + 1);
                strs = str.split("&");
                for (var i = 0; i < strs.length; i++) {
                    theRequest[strs[i].split("=")[0]] = unescape(strs[i].split("=")[1]);
                }
            }
            return theRequest;
        }
    </script>
</body>

</html>