Started working on the client-side code.

This commit is contained in:
Jonathan Bernard
2011-02-10 07:47:35 -06:00
parent 0642c18a6e
commit afca12ecc9
9 changed files with 8269 additions and 18 deletions

0
www/css/ts.scss Normal file
View File

24
www/index.yaws Normal file
View File

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<title>TimeStamper - Simple time tracking</title>
</head>
<body>
<div id="header">
<div>
<h1>TimeStamper</h1>
<h4>Simple time tracking.</h4>
</div>
<div id="form-panel">
<form action="/ts/" method="post">
<label for="uname">username: </label>
<input name="uname" type="text"/>
<label for="pwd">password: </label>
<input name="pwd" type="password"/>
</form>
</div>
</body>
</html>

8176
www/js/jquery-1.5.js vendored Normal file

File diff suppressed because it is too large Load Diff

16
www/js/jquery-1.5.min.js vendored Normal file

File diff suppressed because one or more lines are too long

4
www/ts/html_only.yaws Normal file
View File

@ -0,0 +1,4 @@
<!DOCTYPE html>
<html>
</html>

31
www/ts/index.yaws Normal file
View File

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<div id="user" class="bar">
<span id="fullname">Jonathan Bernard</span>
<span id="username">jdbernard</span>
</div>
<div id="user-info" class="bar">
<form action="/ts/update-user.yaws" onsubmit="updateUser(); false">
<!-- TODO -->
</form>
</div>
<div id="timeline" class="bar">
<span id="timeline_name">work</span>
</div>
<div id="timeline-info" class="bar">
<form action="/ts/update-timeline.yaws" onsubmit="updateTimeline(); false">
<!-- TODO -->
</form>
</div>
<div id="new-entry" class="bar">
</div>
<div id="new-entry-notes" class="bar">
</div>
</body>
</html>