This repository has been archived by the owner on Jan 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
68 lines (58 loc) · 2.84 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
<!DOCTYPE html>
<html lang="en" manifest="monkeeTime.manifest">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>monkeeTime by monkeeCreate</title>
<link rel="apple-touch-startup-image" href="splashscreen.png">
<link rel="apple-touch-icon-precomposed" href="monkeeTime.png">
<link rel="stylesheet" href="css/reset.css" type="text/css">
<link rel="stylesheet" href="css/screen.css" type="text/css">
<link rel="stylesheet" href="scripts/ui-themes/smoothness/jquery-ui-1.8.custom.css" type="text/css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="scripts/jquery-ui-1.8.custom.min.js"></script>
<script src="scripts/monkeeTime.js"></script>
</head>
<body>
<div id="about" class="hidden">
<p><strong>monkeeTime</strong><br />
Version 1.0<br />
Developed by <a href="http://jamesfleeting.com" title="James Fleeting">James Fleeting</a></p>
<p><em>Easily log time spent on projects using a clean interface.<br />
Track your time anywhere using the desktop or iPhone.</em></p>
<p>This web app requires the use of a modern browser including:<br />
Safari, Safari Mobile, Chrome, Firefox or IE8.</p>
<p>
<a href="http://twitter.com/monkeecreate" title="@monkeeCreate" target="_blank">@monkeeCreate on Twitter</a>
</p>
<p><button type="button" id="closeButton">Close</button></p>
</div>
<div id="clearLog-message" title="Clear Log" class="hidden">
Are you sure you want to delete all items in the log?
</div>
<div id="emptyFields-message" title="Missing Required Fields" class="hidden">
You must provide a project, number of hours and a date to log your time.
</div>
<header>
<button type="button" id="aboutButton">About</button>
<h1>monkeeTime</h1>
<form id="logForm">
<input type="text" name="project" value="Project Name" onfocus="if(this.value == 'Project Name') this.value = '';" onblur="if(this.value == '') this.value = 'Project Name';">
<input type="number" name="hours" value="Hours" class="shortField" onfocus="if(this.value == 'Hours') this.value = '';" onblur="if(this.value == '') this.value = 'Hours';">
<input type="text" name="date" value="Date" id="date" class="shortField" onfocus="if(this.value == 'Date') this.value = '';" onblur="if(this.value == '') this.value = 'Date';">
<input type="submit" value="Log Time">
</form>
</header>
<section>
<header>
<p>Total: <span>0</span> hours</p>
</header>
<ul id="theLog">
<li class="empty">Loading…</li>
</ul>
<button type="button" id="clearLog">Clear Log</button>
</section>
<footer>
<p>Created by <a href="http://jamesfleeting.com" title="James Fleeting">James Fleeting</a> from <a href="http://monkeecreate.com" title="monkeeCreate">monkeeCreate.com</a></p>
</footer>
</body>
</html>