Started working on the client-side code.
This commit is contained in:
@@ -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>
|
||||
Vendored
+8176
File diff suppressed because it is too large
Load Diff
Vendored
+16
File diff suppressed because one or more lines are too long
@@ -0,0 +1,4 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
</html>
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user