* fix: remove user stories * fix: remove assets + add sample.env, dotenv, gitignore * fix: update package-lock * fix: add dotenv + update package-lock * feat: remove error handling * fix: remove mlab env var * fix: remove bashrc * remove express body parser + organize code * fix: remove gitconfig
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
 | 
						|
   <head>
 | 
						|
      <title>Exercise Tracker | Free Code Camp</title>
 | 
						|
      <link rel="shortcut icon" href="https://cdn.freecodecamp.org/universal/favicons/favicon-32x32.png" type="image/x-icon"/>
 | 
						|
      <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css">
 | 
						|
      <link href="style.css" rel="stylesheet" type="text/css">
 | 
						|
   </head>
 | 
						|
 | 
						|
   <body>
 | 
						|
      <div class="container">
 | 
						|
         <h1>Exercise tracker</h1>
 | 
						|
          <form action="/api/exercise/new-user" method="post">
 | 
						|
            <h3>Create a New User</h3>
 | 
						|
            <p><code>POST /api/exercise/new-user</code></p>
 | 
						|
            <input id="uname" type="text" name="username" placeholder="username">
 | 
						|
            <input type="submit" value="Submit">
 | 
						|
          </form>
 | 
						|
          <form action="/api/exercise/add" method="post">
 | 
						|
            <h3>Add exercises</h3>
 | 
						|
            <p><code>POST /api/exercise/add</code></p>
 | 
						|
            <input id="uid" type="text" name="userId" placeholder="userId*">
 | 
						|
            <input id="desc" type="text" name="description" placeholder="description*">
 | 
						|
            <input id="dur" type="text" name="duration" placeholder="duration* (mins.)">
 | 
						|
            <input id="dat" type="text" name="date" placeholder="date (yyyy-mm-dd)">
 | 
						|
            <input type="submit" value="Submit">
 | 
						|
          </form>
 | 
						|
          <p><strong>GET users's exercise log: </strong><code>GET /api/exercise/log?{userId}[&from][&to][&limit]</code></p>
 | 
						|
          <p><strong>{ }</strong> = required, <strong>[ ]</strong> = optional</p>
 | 
						|
          <p><strong>from, to</strong> = dates (yyyy-mm-dd); <strong>limit</strong> = number</p>
 | 
						|
      </div>
 | 
						|
   </body>
 | 
						|
 | 
						|
</html>
 |