-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprs.html
46 lines (35 loc) · 1.21 KB
/
prs.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
<html lang="en">
<head>
<meta charset="utf-8">
<title>PRS Tracker</title>
<meta name="description" content="PRS Tracker">
<meta name="author" content="thedudewiththething">
<link rel="stylesheet" href="stylesheets/site.css">
<script src="/js/moment.min.js"></script>
</head>
<body id="prs">
<div class="progress">
<div class="progress-mask"></div>
<img src="/images/dime.png" alt="the beast!"/>
</div>
<div id="inputs">
<form action="#">
<ul>
<li>Start <input id="start" type="date" name="start"/></li>
<li>Deadline <input id="deadline" type="date" name="deadline">
<li>Hours <input id="hours" type="number" name="hours"/></li>
<li>Hours Complete <input id="complete" type="number" name="complete"/></li>
</ul>
</form>
<a href="#" class="button log-half-hour">Log Half Hour</a>
<a href="#" class="button log-hour">Log Hour</a>
<ul>
<li>Days Left: <span class="days-left"></span</li>
<li>Hours Left: <span class="hours-left"></span</li>
<li>Hours per day Left: <span class='hours-per-day'></li>
</ul>
<a href="#" class="button clear-data">Clear Data</a>
</div>
<script src="js/prs.js"></script>
</body>
</html>