Skip to content

Instantly share code, notes, and snippets.

@biot023
Created January 24, 2010 21:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save biot023/285471 to your computer and use it in GitHub Desktop.
Save biot023/285471 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8'>
<title>Penny</title>
</head>
<body>
<form accept-charset='utf-8' action='/session.json' class='current' id='login' method='post'>
<div class='toolbar'>
<h1>Login</h1>
</div>
<ul class='rounded'>
<li>
<input name='username' placeholder='Username' type='text' value=''>
</li>
<li>
<input name='password' placeholder='Password' type='password' value=''>
</li>
</ul>
<a class='whiteButton login'>
Login
</a>
</form>
<div id='home'>
<div class='toolbar'>
<a class='button' href='#login' id='logout'>
Logout
</a>
<h1>Main Options</h1>
</div>
<ul class='rounded'></ul>
<div class='info'>
Spint Timesheet Admin
</div>
</div>
<div id='admin_new_records'>
<div class='toolbar'>
<a class='back'>
Back
</a>
<h1>New Records</h1>
</div>
<ul class='rounded'></ul>
<div class='info'>
Employees with records that need signing off
</div>
</div>
<div id='admin_new_records_employee_index'>
<div class='toolbar'>
<a class='back'>
Back
</a>
<h1>"???" New Records</h1>
<a class='button new'>
New
</a>
</div>
<ul class='rounded'></ul>
<div class='info'>
Records to sign off for employee
</div>
</div>
<div id='admin_new_records_employee_show'>
<div class='toolbar'>
<a class='back'>
Back
</a>
<h1>Timesheet Record</h1>
</div>
<ul class='rounded'></ul>
<a class='whiteButton edit'>
Edit
</a>
<a class='grayButton signoff'>
Signoff
</a>
<div class='info'>
Timesheet record details
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment