-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (54 loc) · 2.5 KB
/
index.html
File metadata and controls
58 lines (54 loc) · 2.5 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>listKeeperBasic</title>
<link rel="icon" type="image/x-icon" href="img/list_icon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.2/css/materialize.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.1/css/all.css">
<link rel="stylesheet" href="main.css">
</head>
<body class="light-blue lighten-3">
<div class="container">
<div class="row">
<div class="col s12">
<div id="main" class="card">
<div class="card-content">
<span class="card-title"><i class="fas fa-th-list"></i> List Keeper Basic</span>
<form id="item-form">
<div class="input-field col s10">
<input type="text" name="item" id="item" style="border-bottom: 1px solid #0288d1;">
<label for="item" id="itemLabel" class="light-blue-text text-darken-2">New Item</label>
</div>
<button type="submit" class="submitBtn btn waves-effect waves-light light-blue darken-2"><i class="fas fa-plus"></i></button>
</form>
</div>
<div class="row">
<div class="col s10 offset-s1">
<div class="card-panel">
<h5 id="item-title">Item List</h5>
<div class="input-field col s12">
<input type="text" name="filter" id="filter" style="border-bottom: 1px solid #0288d1;">
<label for="filter" class="light-blue-text text-darken-2">Filter Items</label>
</div>
<ul class="collection">
</ul>
<ul>
<li id="noMatchMessage">Sorry, there are no matches. Please try a different search.</li>
<li id="noList">There are no list items to filter.</li>
</ul>
<a href="#" class="clear-items btn-small waves-effect waves-light deep-orange darken-4"><i class="fas fa-times"></i> All</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.2/js/materialize.min.js"></script>
<script src="app.js"></script>
</body>
</html>