tracker.html 933 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Time Tracker | leemorgan.io</title>
  6. <style>
  7. *{margin:0;padding:0;}
  8. body{
  9. display: flex;
  10. flex-direction: column;
  11. max-width: 500px;
  12. }
  13. body > *{margin: 15px;}
  14. </style>
  15. </head>
  16. <body>
  17. <input id="name" type="text" placeholder="NAME">
  18. <input id="project" type="text" placeholder="PROJECT">
  19. <textarea id="description" placeholder="DESCRIPTION"></textarea>
  20. <button id="startStop" onclick="startStop()">Start</button>
  21. <button id="pause" style="display:none">Pause</button>
  22. <script>
  23. let running = false;
  24. let startStop = ()=>{
  25. if(running === false){
  26. }
  27. }
  28. </script>
  29. </body>
  30. </html>