-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
171 lines (167 loc) Β· 7.57 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0 viewport-fit=cover">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Todo list</title>
<meta name="description" content="Vue js to do list">
<!-- development version, includes helpful console warnings -->
<!-- <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> -->
<!-- production version, optimized for size and speed -->
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css">
<link rel="stylesheet" href="content/css/screen.min.css">
<script src="content/js/app.js"></script>
</head>
<body>
<div id="app">
<div class="page-container">
<nav>
<ul>
<li class="is-active">
<button>
π±βπHoliday in Japan
<span>
2 / 6
</span>
</button>
</li>
<li>
<button>
π Bucket list
<span>
3 / 7
</span>
</button>
</li>
<li>
<button>
π₯ Groceries
<span>
5 / 5
</span>
</button>
</li>
<li>
<button>
π Work
<span>
1 / 2
</span>
</button>
</li>
<li>
<button>
π· Photography
<span>
1 / 1
</span>
</button>
</li>
<li>
<button class="is-add">Create a new list</button>
</li>
</ul>
</nav>
<main>
<header style="background-image: url("https://source.unsplash.com/featured/?tokyo");">
<div class="header-content">
<h1>π±βπHoliday in Japan</h1>
<button class="is-primary">Edit list</button>
</div>
</header>
<ul>
<li class="is-completed">
<label for="todo0">
<input name="todo0" id="todo0" type="checkbox">Eat Ramens</label>
<button class="is-primary">Edit todo</button>
</li>
<li class="is-completed">
<label for="todo1">
<input name="todo1" id="todo1" type="checkbox">Karaoke </label>
<button class="is-primary">Edit todo</button>
</li>
<li>
<label for="todo2">
<input name="todo2" id="todo2" type="checkbox">Sushis</label>
<button class="is-primary">Edit todo</button>
</li>
<li>
<label for="todo3">
<input name="todo3" id="todo3" type="checkbox">Visit mt Fuji</label>
<button class="is-primary">Edit todo</button>
</li>
<li>
<label for="todo4">
<input name="todo4" id="todo4" type="checkbox">Harajuku</label>
<button class="is-primary">Edit todo</button>
</li>
<li>
<label for="todo5">
<input name="todo5" id="todo5" type="checkbox">Get a bento box for mum</label>
<button class="is-primary">Edit todo</button>
</li>
<li>
<button class="is-add">New Todo</button>
</li>
</ul>
</main>
</div>
<div class="sidebar">
<div class="sidebar-content">
<!--createNewList-->
<form>
<h3>Create a new list</h3>
<label for="listTitle">Title:</label>
<input id="listTitle" name="listTitle" placeholder="My amazing next trip to south america" type="text">
<label for="listKeyword">Keyword:</label>
<input id="listKeyword" name="listKeyword" placeholder="Colombia" type="text">
<div class="buttons">
<button type="button" class="is-danger">Cancel</button>
<button type="button" class="is-confirm">Create List</button>
</div>
</form>
<!--editList-->
<!-- <form>
<h3>Edit list</h3>
<label for="listTitle">Title:</label>
<input id="listTitle" name="listTitle" placeholder="My amazing next trip to south america"
type="text">
<label for="listKeyword">Keyword:</label>
<input id="listKeyword" name="listKeyword" placeholder="Colombia" type="text">
<div class="buttons">
<button type="button" class="is-danger">Delete list</button>
<button type="button" class="is-confirm">Done</button>
</div>
</form> -->
<!--createNewTodo-->
<!-- <form>
<h3>Create a new todo</h3>
<label for="todoName">Todo:</label>
<input id="todoName" name="todoName" placeholder="Do things..." type="text">
<label for="todoCompleted">
<input name="todoCompleted" id="todoCompleted" type="checkbox"> Is completed</label>
<div class="buttons">
<button type="button" class="is-danger">Cancel</button>
<button type="button" class="is-confirm">Create todo</button>
</div>
</form> -->
<!--editTodo-->
<!-- <form>
<h3>Edit todo</h3>
<label for="todoName">Todo:</label>
<input id="todoName" name="todoName" placeholder="Do things..." type="text">
<label for="todoCompleted">
<input name="todoCompleted" id="todoCompleted" type="checkbox"> Is completed</label>
<div class="buttons">
<button type="button" class="is-danger">Delete todo</button>
<button type="button" class="is-confirm">Done</button>
</div>
</form> -->
</div>
</div>
<button class="menu">Menu</button>
</div>
</body>
</html>