-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-unmin-code.html
76 lines (61 loc) · 2.03 KB
/
index-unmin-code.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
<!DOCTYPE html>
<html>
<head>
<title>Motivator | Daily Productivity</title>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap" rel="stylesheet">
<link rel='stylesheet' href='css/action-clock.min.css'>
<link rel='stylesheet' href='css/styles.min.css'>
</head>
<body>
<header class='main'>
<!--Left links -->
<div id='left-navlinks'>
<nav class='nav'>
<ul class='ul-navlinks'>
<a href='#' class='navbrand'>ActionClock</a>
<!--<li class='list-navlink'><a href='' class='a-navlink'>Subscribe</a></li>-->
<i class='fa fa-search'></i>
<input type='text' class='top-input-search-form' placeholder="Search for anything ...">
</ul>
</nav>
</div>
<div id='nav-middle'>Loading weather info ...</div>
<!--Right links -->
<div id='right-navlinks'>
<button class='btn btn-lg btn-profile' id='create-profile-id' onclick="return test()">
<i class='fa fa-user'></i> Create Profile</button>
</div>
</header>
<main class='main-content'>
<div id='timer-id'>
<div id='action-clock-id'></div>
<div id='action-query-id'>
<h1></h1>
<h1>What is your main goal for today?</h1>
</div>
<div id='new-action-id'>
<textarea></textarea>
<!--<input type='text' class='main-action-input-query'>-->
<div class='action-buttons'>
<button type='button' class='btn-action' id='create-action-button'>Create Goal</button>
<button class='btn-action'>Todo List</button>
</div>
</div>
</div>
</main>
<footer>
<div id='left-footer-links'>
Andreas Gücklhorn
</div>
<div id='right-footer-links'>
<a href='#'> <i class="fa fa-bullhorn"></i> Events </a> |
<a href='#'> <i class="fa fa-info-circle"></i> Info </a> |
<div id='action-tools-div'></div>
<a href='#' id='action-clock-tools'><i class='fa fa-cog'></i> Tools</a>
</div>
</footer>
<script src="https://use.fontawesome.com/3c5e8bf75a.js"></script>
<script type='module' src='js/action-clock.min.js'></script>
<script src='js/profile.min.js'></script>
</body>
</html>