Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
design
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abookCheck
design
Commits
a7bcc9a6
Commit
a7bcc9a6
authored
Aug 18, 2022
by
NGUYEN HOANG SON
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add dashboard-setting html
parent
25d81d19
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
91 additions
and
0 deletions
+91
-0
app/dashboard-setting.html
+91
-0
No files found.
app/dashboard-setting.html
0 → 100755
View file @
a7bcc9a6
<!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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment