| 12345678910111213141516171819202122232425262728293031323334353637 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>Time Tracker | leemorgan.io</title>
- <style>
- *{margin:0;padding:0;}
- body{
- display: flex;
- flex-direction: column;
- max-width: 500px;
- }
- body > *{margin: 15px;}
- </style>
- </head>
- <body>
- <input id="name" type="text" placeholder="NAME">
- <input id="project" type="text" placeholder="PROJECT">
- <textarea id="description" placeholder="DESCRIPTION"></textarea>
- <button id="startStop" onclick="startStop()">Start</button>
- <button id="pause" style="display:none">Pause</button>
- <script>
- let running = false;
- let startStop = ()=>{
- if(running === false){
-
- }
- }
- </script>
- </body>
- </html>
|