dashboard-setting.html 2.73 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
<!DOCTYPE html>
<html lang="ja-JP">

<head>
    <meta charset="utf-8">
    <title>ダッシュボード設定</title>
    <meta name="robots" content="index, follow">
    <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
    <meta name="description" content="A Book Check">

11 12 13 14 15
    <link rel="stylesheet" type="text/css" href="/abvw/common/css/appCommon/app.css">
    <link rel="stylesheet" type="text/css" href="/abvw/common/css/appCommon/fontawesome_relative_path.css">
    <link rel="stylesheet" type="text/css" href="/abvw/common/css/appCommon/header.css">
    <link rel="stylesheet" type="text/css" href="/abvw/common/css/appCommon/footer.css">
    <link rel="stylesheet" type="text/css" href="/abvw/common/css/appCommon/style.css">
16 17 18 19
    <script src="/abvw/common/js/jquery/jquery-3.6.0.min.js?__UPDATEID__"></script>
    <script src="/abvw/common/js/jquery/jquery-ui.min.js?__UPDATEID__"></script>
    <script src="/abvw/common/js/constant.js?__UPDATEID__"></script>
    <script src="/abvw/common/js/common.js?__UPDATEID__"></script>
20
    <script src="/abvw/common/js/footer.js"></script>
21
    <script src="/abvw/js/dashboardSetting/dashboard-setting.js"></script>
22 23
</head>

24
<body id="dashboard" onload="DashboardSetting.init();">
25 26
    <header>
        <nav class="navbar navbar-dark bg-primary position-fixed fixed-top w-100">
27
            <a href="javascript:DashboardSetting.goBack();" class="navbar-brand category-btn lht-0">
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
                <i class="fas fa-chevron-left fs-12 p-1"></i>
                <span class="d-none d-md-inline fs-10">
                    戻る
                </span>
            </a>
            <h1 class="fs-10 font-weight-bold mb-0 text-white multi-lang" data-msg="dashboardSettingHeaderTitle">ダッシュボード設定</h1>
            <div></div>
        </nav>
    </header>

    <!-- setting -->
    <section class="container-fluid main-section">
        <main>
            <h2 class="fs-8 font-weight-bold mt-4 pb-2 border-bottom text-dark multi-lang" data-msg="dashboardSettingDisplayHeader">表示切替</h2>
            <div class="setting-table-wrap">
                <table id="displayItems">
                    <tbody>
                        <!-- <tr>
                            <th><div class="font-weight-normal text-dark multi-lang" data-msg="dashboardSettingNewRegistrationTitle">新規報告</div></th>
                            <td>
                                <div class="toggle"><input type="checkbox" name="chk-new" /></div>
                            </td>
                        </tr> -->
                    </tbody>
                </table>
            </div>
        </main>
    </section>
    <div id="footer"></div>
</body>
</html>