This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
94 lines (91 loc) · 3.62 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<!-- ====== SEO ====== -->
<meta name="description" content="GW2 Web tool to track progress on items">
<meta property="og:title" content="GW2 TODO List"/>
<meta property="og:url" content=""/>
<meta property="og:type" content="website"/>
<meta property="og:description" content="GW2 TODO List" />
<link rel="icon" href="static/images/favicon.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GW2 TODO List</title>
<link rel="stylesheet" href="static/style/bootstrap/css/bootstrap.min.css"/>
<link rel="stylesheet" href="static/style/font-awesome-4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="static/style/style.css"/>
<script type="text/javascript" src="static/js/jquery-3.6.0.min.js" defer></script>
<script type="text/javascript" src="static/js/popper.min.js" defer></script>
<script type="text/javascript" src="static/style/bootstrap/js/bootstrap.min.js" defer></script>
<script type="text/javascript" src="static/js/script.js" defer></script>
</head>
<body>
<!-- Login Modal -->
<div class="modal fade" id="loginModal" tabindex="-1" role="dialog" aria-labelledby="loginModal"
aria-hidden="true" data-bs-keyboard="false" data-bs-backdrop="static">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body">
Input API Key <input type="text" name="apikey" id="input_apikey" placeholder="Your API Key">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary">Submit</button>
</div>
</div>
</div>
</div>
<!-- Login Modal end -->
<header>
<nav class="navbar navbar-dark bg-dark sticky-top">
<div class="container">
<a class="navbar-brand" href="#">
<img src="static/style/logo.svg" alt="GW2-TODO List logo" width="30" height="24">
</a>
<ul class="nav">
<li class="nav-item">
<a class="nav-link disabled" href="#">Export</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#">Load</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#">Add bulk</a>
</li>
<li class="nav-item">
<a id="resetToken" class="nav-link" href="#">Change API key</a>
</li>
</ul>
</div>
</nav>
</header>
<section>
<!-- Alert section -->
<div id="alert-header"></div>
<!-- Alert section end -->
<div class="container">
<!-- Add item input bar section -->
<div class="row justify-content-center pt-4 pb-4">
<div id="add-item" class="col-6">
<div class="input-group">
<span class="input-group-text" id="item-addon">Item</span>
<input id="item-input-id" type="text" class="form-control" placeholder="As [&AgFGIQAA]" aria-label="Item id" aria-describedby="item-addon">
<button class="btn btn-outline-secondary" type="button" id="addItem-addon">Add</button>
</div>
</div>
</div>
<!-- Add item input bar end -->
<!-- Show tracked items section -->
<div id="todo-list" class="container-fluid">
<h3 class="border-bottom"> TODO List </h3>
<div id="item-grid" class="row row-cols-2">
</div>
</div>
<!-- Show tracked items end -->
</div>
</section>
<footer>
<!-- github link -->
<!-- created by -->
</footer>
</body>
</html>