generated from Radioactive92177/Flask-App-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (70 loc) · 2.5 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
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" href="assets/icons/clipboard.png" type="image/x-icon">
<!--Import Google Icon Font-->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link
type="text/css"
rel="stylesheet"
href="assets/css/lib/materialize.min.css"
media="screen,projection"
/>
<!-- Custom css -->
<link rel="stylesheet" href="assets/css/main.css">
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#000000" />
<link rel="apple-touch-icon" href="assets/icons/clipboard.png" />
<link rel="manifest" href="manifest.json" />
<!-- Title -->
<title>Hit List</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col s12">
<div class="card" id="main">
<div class="card-content">
<span class="card-title center"
><h2><a href="https://viaens.com">Hit <span class="green-text text-lighten-1">List</span></a></h2></span
>
<div class="row">
<form id="taskForm">
<div class="input-field col s12">
<input type="text" name="task" id="taskInput" />
<label for="task">Add your goals</label>
</div>
<input
type="submit"
value="Add Goals"
class="submitBtn btn #1e88e5 blue darken-1"
/>
</form>
</div>
</div>
<div class="card-action">
<h5 id="task-title">Goals for today</h5>
<div class="row">
<div class="input-field col s12">
<input type="text" name="search" id="search" class="autocomplete" />
<label for="search">Search your goals</label>
</div>
<ul class="collection"></ul>
<a href="#" class="clearGoals btn #43a047 green darken-1"
>Clear all goals</a
>
</div>
</div>
</div>
</div>
</div>
</div>
<!--JavaScript at end of body for optimized loading-->
<script type="text/javascript" src="assets/js/lib/materialize.min.js"></script>
<script src="assets/js/app.js"></script>
</body>
</html>