2011-02-10 07:47:35 -06:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
2011-02-14 17:16:37 -06:00
|
|
|
<title>TimeStamper - Simple Time Tracking</title>
|
2011-03-01 08:23:51 -06:00
|
|
|
<link rel="stylesheet" media="screen" href="/css/dot-luv/jquery-ui-1.8.10.custom.css" type="text/css"/>
|
|
|
|
<link rel="stylesheet" media="screen" href="/css/ts-screen.css" type="text/css"/>
|
|
|
|
<script type="text/javascript" src="/js/jquery-1.5.min.js"></script>
|
|
|
|
<script type="text/javascript" src="/js/jquery-ui-1.8.10.custom.min.js"></script>
|
|
|
|
<script type="text/javascript" src="/js/ts.js"></script>
|
2011-02-14 17:16:37 -06:00
|
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
2011-02-10 07:47:35 -06:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2011-02-11 16:35:11 -06:00
|
|
|
|
2011-02-10 07:47:35 -06:00
|
|
|
<div id="user" class="bar">
|
2011-03-01 08:23:51 -06:00
|
|
|
<span id="fullname">Not Logged In</span>
|
|
|
|
<span id="username">- no_user</span>
|
2011-02-11 17:09:58 -06:00
|
|
|
<div class="control-links">
|
2011-02-12 07:48:19 -06:00
|
|
|
<a href="/ts/edit-user.yaws"
|
|
|
|
onclick="toggleUserInfo(event)">user info</a>
|
|
|
|
<a href="/ts/logout.yaws" onclick="logout(event)">logout</a>
|
2011-02-11 16:35:11 -06:00
|
|
|
</div>
|
|
|
|
|
2011-02-12 07:48:19 -06:00
|
|
|
<div id="user-info">
|
|
|
|
<form action="/ts/update-user.yaws" onsubmit="updateUser(event)">
|
|
|
|
<div class="form-col">
|
2011-02-14 17:16:37 -06:00
|
|
|
<label for="fullname-input"><span>name:</span>
|
2011-02-12 07:48:19 -06:00
|
|
|
<input id="fullname-input" name="fullname"
|
|
|
|
class="text-input" type="text"/>
|
|
|
|
</label>
|
2011-02-14 17:16:37 -06:00
|
|
|
<label for="email-input"><span>email:</span>
|
2011-02-12 07:48:19 -06:00
|
|
|
<input id="email-input" name="email"
|
|
|
|
class="text-input" type="text"/>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-col">
|
|
|
|
<div id="change-pwd">
|
2011-02-14 17:16:37 -06:00
|
|
|
<label for="old-pwd-input"><span>password:</span>
|
2011-02-12 07:48:19 -06:00
|
|
|
<input id="old-pwd-input" name="old-pwd"
|
|
|
|
class="text-input" type="password"/>
|
|
|
|
</label>
|
2011-02-14 17:16:37 -06:00
|
|
|
<label for="new-pwd-input"><span>new pwd:</span>
|
2011-02-12 07:48:19 -06:00
|
|
|
<input id="new-pwd-input" name="new-pwd"
|
|
|
|
class="text-input" type="password"/>
|
|
|
|
</label>
|
2011-02-14 17:16:37 -06:00
|
|
|
<label for="new-pwd-conf-input"><span>confirm:</span>
|
2011-02-12 07:48:19 -06:00
|
|
|
<input id="new-pwd-conf-input" name="new-pwd-conf"
|
|
|
|
class="text-input" type="password"/>
|
|
|
|
</label>
|
|
|
|
</div>
|
2011-02-14 17:16:37 -06:00
|
|
|
<label for="enable-pwd-change-input">
|
2011-02-12 07:48:19 -06:00
|
|
|
<input name="enable-pwd-change" type="checkbox"
|
2011-02-14 17:16:37 -06:00
|
|
|
id="enable-pwd-change-input"
|
2011-02-12 07:48:19 -06:00
|
|
|
onclick="showChangePwd(event)"/>
|
|
|
|
change password
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-submit">
|
|
|
|
<div>
|
|
|
|
<input name="submit-user" type="submit"
|
|
|
|
value="save changes"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2011-02-10 07:47:35 -06:00
|
|
|
</div>
|
2011-02-11 16:35:11 -06:00
|
|
|
|
2011-02-10 07:47:35 -06:00
|
|
|
<div id="timeline" class="bar">
|
2011-03-01 08:23:51 -06:00
|
|
|
<span id="timeline-name">timeline |</span>
|
|
|
|
<span id="timeline-desc">timeline description</span>
|
2011-02-11 17:09:58 -06:00
|
|
|
<div class="control-links">
|
2011-02-12 07:48:19 -06:00
|
|
|
<a href="/ts/edit-timeline.yaws"
|
|
|
|
onclick="toggleTimelineInfo(event)">timeline info</a>
|
|
|
|
<a href="/ts/select-timeline.yaws"
|
|
|
|
onclick="showTimelineMenu(event)">change timelines</a>
|
2011-02-11 17:09:58 -06:00
|
|
|
</div>
|
2011-02-11 16:35:11 -06:00
|
|
|
|
2011-02-12 07:48:19 -06:00
|
|
|
<div id="timeline-info">
|
|
|
|
<form action="/ts/update-timeline.yaws"
|
|
|
|
onsubmit="updateTimeline(event); false">
|
2011-02-14 17:16:37 -06:00
|
|
|
<label for="timeline-desc-input"><span>description:</span>
|
2011-02-12 07:48:19 -06:00
|
|
|
<input id="timeline-desc-input" class="text-input"
|
|
|
|
name="timeline-desc" type="text"/>
|
|
|
|
</label>
|
|
|
|
<div class="form-submit">
|
2011-02-14 17:16:37 -06:00
|
|
|
<div><input name="submit-timeline" type="submit"
|
|
|
|
value="save changes"/></div>
|
2011-02-12 07:48:19 -06:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2011-02-10 07:47:35 -06:00
|
|
|
</div>
|
2011-02-12 07:48:19 -06:00
|
|
|
|
2011-03-01 08:23:51 -06:00
|
|
|
<div id="new-entry" class="bar">
|
2011-02-14 09:01:32 -06:00
|
|
|
<form action="/ts/new-entry.yaws" onsubmit="newEntry(event)">
|
2011-02-14 17:16:37 -06:00
|
|
|
begin a new activity:
|
|
|
|
<input name="new-entry" id="new-entry-input"
|
|
|
|
class="text-input" type="text"/>
|
|
|
|
<input name="submit-entry" id="submit-entry"
|
|
|
|
class="form-submit" type="submit" value="create entry"/>
|
|
|
|
<div class="control-links">
|
|
|
|
<a id="show-notes" href="#"
|
|
|
|
onclick="showNewNotes(event)">add notes</a>
|
|
|
|
</div>
|
|
|
|
<div id="add-notes" class="form-col">
|
|
|
|
<label for="new-notes-input">notes:</label>
|
|
|
|
<textarea name="new-notes" id="new-notes-input"
|
|
|
|
class="text-input" rows="8" cols="40" ></textarea>
|
2011-02-13 11:38:50 -06:00
|
|
|
</div>
|
|
|
|
</form>
|
2011-02-10 07:47:35 -06:00
|
|
|
</div>
|
2011-03-01 08:23:51 -06:00
|
|
|
|
|
|
|
<div id="last-entry" class="bar last-bar">
|
|
|
|
<a href="#" onclick="loadMoreEntries();">Load More Entries</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="login-dialog" title="Login">
|
|
|
|
<form>
|
|
|
|
<fieldset>
|
|
|
|
<label for="login-name">Username:</label>
|
|
|
|
<input type="text" name="login-name" id="login-name"
|
|
|
|
class="text ui-widget-content ui-corner-all"></input>
|
|
|
|
<label for="login-password">Password:</label>
|
|
|
|
<input type="password" name="login-password" id="login-password"
|
|
|
|
class="text ui-widget-content ui-corner-all"></input>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<p class="validate-tips"></p>
|
|
|
|
</div>
|
2011-02-10 07:47:35 -06:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|