-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (78 loc) · 3.3 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
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Michael Baywatch</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.4.0/css/foundation.min.css">
<link rel="stylesheet" href="app.css">
</head>
<body>
<div class="grid-x">
<div class="medium-8 medium-offset-2 cell">
<h1><small>Michael</small>Baywatch</h1>
<form id="flick-form">
<div class="input-group">
<input
type="text"
class="input-group-field"
name="flickName"
placeholder="Name a flick, double click a flick to edit"
autofocus
required
>
<div class="input-group-button">
<button
class="success button"
type="submit"
>
Add flick
</button>
</div>
</div>
</form>
<div class="input-group" id="search-bar">
<input
type="text"
class="input-group-field"
id="search-field"
placeholder="Search"
>
<div class="input-group-button">
<button
class="button"
id="clear-search"
>
Clear Search
</button>
</div>
</div>
</div>
<div class="medium-8 medium-offset-2 cell list-container">
<ul id="flick-list" class="no-bullet">
<li class="template flick grid-x align-middle">
<span class="flick-name auto cell"></span>
<span class="actions button-group shrink cell">
<button class="fav button warning">
<i class="fa fa-star-o"></i>
</button>
<button class="up button">
<i class="fa fa-arrow-circle-up"></i>
</button>
<button class="down button">
<i class="fa fa-arrow-circle-down"></i>
</button>
<button class="remove button alert">
<i class="fa fa-trash-o"></i>
</button>
</span>
</li>
</ul>
</div>
</div>
<script src="app.js"></script>
</body>
</html>