From efa689b3543b5c5eee34530879b7d76ad6592e2d Mon Sep 17 00:00:00 2001 From: Haakon Gunleiksrud <haakogun@stud.ntnu.no> Date: Wed, 8 Dec 2021 10:05:11 +0100 Subject: [PATCH] feat/update description of exercise form inputs --- frontend/www/exercise.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/www/exercise.html b/frontend/www/exercise.html index b229e0d..8653fe2 100644 --- a/frontend/www/exercise.html +++ b/frontend/www/exercise.html @@ -31,17 +31,17 @@ </div> <div class="col-lg-6"></div> <div class="col-lg-6"> - <label for="inputUnit" class="form-label">Unit</label> + <label for="inputUnit" class="form-label">Unit (Reps, time, etc.)</label> <input type="text" class="form-control" id="inputUnit" name="unit" readonly> </div> <div class="col-lg-6"></div> <div class="col-lg-6"> - <label for="inputDuration" class="form-label"> Duration (Seconds per unit)</label> + <label for="inputDuration" class="form-label"> Duration(Expects a positive integer)</label> <input type="number" class="form-control" id="inputDuration" name="duration" readonly></input> </div> <div class="col-lg-6"></div> <div class="col-lg-6"> - <label for="inputCalories" class="form-label"> Calories burned (kcal per minute)</label> + <label for="inputCalories" class="form-label"> Calories burned (Expects a positive integer)</label> <input type="number" class="form-control" id="inputCalories" name="calories" readonly></input> </div> <div class="col-lg-6"></div> -- GitLab