forked from OpenSquad/Focus-Time
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
68 lines (49 loc) · 3.1 KB
/
popup.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
<!DOCTYPE html>
<html>
<head>
<title>Focus Time</title>
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<script type="text/javascript" src="background.js"></script>
<script type="text/javascript" src="popup.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</head>
<body>
<nav style="margin-bottom: 8px !important;">
<div class="navbar-fixed blue lighten-1">
<a href="#" class="brand-logo center"><img style="height:70% !important;width: 70% !important; " src="logos/logofinal1_t.PNG""></a>
<!-- <button class="btn-small cyano byed right" style="height: 100%;">Sessions</button> -->
</div>
</nav>
<p>Choose your session
<div class="container" style="margin-bottom: 7px;">
<div class="input-field col s12">
<select class="browser-default" id="sessionValue">
</select>
</div></div>
<div class="row">
<div id="addino">
<div class="container">
<h5 class="hs">Activities for this session</h5>
<ul id="incomplete-tasks">
<li><input type="checkbox" id="tough" class="berouit"><label for="tough">Activity 1</label><input type="text"><button class="edit btn-small zre9 byed padderul">Edit</button><button class="delete btn-small zre9 biyed">Delete</button></li>
<li><input type="checkbox" id="tough1" class="berouit"><label for="tough1">Activity 2</label><input type="text"><button class="edit btn-small zre9 byed padderul">Edit</button><button class="delete btn-small zre9 biyed">Delete</button></li>
<li><input type="checkbox" id="tough2" class="berouit"><label for="tough2">Activity 3</label><input type="text"><button class="edit btn-small zre9 byed padderul">Edit</button><button class="delete btn-small zre9 biyed">Delete</button></li>
<li><input type="checkbox" id="tough3" class="berouit"><label for="tough3">Activity 4</label><input type="text"><button class="edit btn-small zre9 byed padderul">Edit</button><button class="delete btn-small zre9 biyed">Delete</button></li>
<li><input type="checkbox" id="tough4" class="berouit"><label for="tough4">Activity 5</label><input type="text"><button class="edit btn-small zre9 byed padderul">Edit</button><button class="delete btn-small zre9 biyed">Delete</button></li>
</ul>
<div class="divider"></div>
<h5 class="hs">Completed</h5>
<ul id="completed-tasks">
</ul>
<div class="divider"></div>
</div>
</div>
</div>
<div class="containLoad"><div id="cloadulation"><div id="loadulation"></div></div></div>
</div>
<div class="divider"></div>
<button class="btn" style="width: 100% !important; background-color: #42a5f5 !important;" id="dashJump">Dashboard</button>
<script src="popup.js"></script>
</body>
</html>