Commit a7bcc9a6 by NGUYEN HOANG SON

add dashboard-setting html

parent 25d81d19
<!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">
<link rel="stylesheet" type="text/css" href="css/app.css">
<link rel="stylesheet" type="text/css" href="css/fontawesome_relative_path.css">
<link rel="stylesheet" type="text/css" href="css/header.css">
<link rel="stylesheet" type="text/css" href="css/footer.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="js/jquery-1.11.2.min.js?__UPDATEID__"></script>
<script src="script/check.js?__UPDATEID__"></script>
<script src="script/check-list.js?__UPDATEID__"></script>
<script src="script/check-foriOS.js"></script>
<script src="script/constant.js?__UPDATEID__"></script>
</head>
<body id="dashboard">
<header>
<nav class="navbar navbar-dark bg-primary position-fixed fixed-top w-100">
<a href="index.html" class="navbar-brand category-btn lht-0">
<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">ダッシュボード設定</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">表示切替</h2>
<div class="setting-table-wrap">
<table>
<tbody>
<tr>
<th><div class="font-weight-normal text-dark">新規報告</div></th>
<td>
<div class="toggle"><input type="checkbox" name="chk-new" /></div>
</td>
</tr>
<tr>
<th><div class="font-weight-normal text-dark">工程作業</div></th>
<td>
<div class="toggle"><input type="checkbox" name="chk-proccess" /></div>
</td>
</tr>
<tr>
<th><div class="font-weight-normal text-dark">警告を含む作業</div></th>
<td>
<div class="toggle"><input type="checkbox" name="chk-alert" /></div>
</td>
</tr>
<tr>
<th><div class="font-weight-normal text-dark">ダッシュボードをホーム画面にする</div></th>
<td>
<div class="toggle"><input type="checkbox" name="chk-home" /></div>
</td>
</tr>
</tbody>
</table>
</div>
</main>
</section>
<div id="footer"></div>
</body>
<script>
$(document).ready(function() {
$("#footer").load("main-footer.html");
});
$(".toggle").on("click", function() {
$(this).toggleClass("checked");
if(!$('input[name="check"]').prop("checked")) {
$(".toggle input").prop("checked", true);
} else {
$(".toggle input").prop("checked", false);
}
});
</script>
</html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment