diff options
Diffstat (limited to 'app')
| -rw-r--r-- | app/static/js/create.js | 2 | ||||
| -rw-r--r-- | app/templates/workout/create.html | 2 | ||||
| -rw-r--r-- | app/templates/workout/record_select.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/app/static/js/create.js b/app/static/js/create.js index b65bc5a..0f63956 100644 --- a/app/static/js/create.js +++ b/app/static/js/create.js @@ -36,7 +36,7 @@ document.getElementById("add").onclick = handleAdd; function handleChange(elem) { if (elem.target.value == 'time') { - elem.target.parentNode.parentNode.parentNode.children[1].placeholder = "Time"; + elem.target.parentNode.parentNode.parentNode.children[1].placeholder = "Time (in seconds)"; elem.target.parentNode.parentNode.parentNode.children[1].selected = true; elem.target.parentNode.parentNode.children[1].children[0].classList.remove('fa-calculator'); elem.target.parentNode.parentNode.children[1].children[0].classList.add('fa-clock-o'); diff --git a/app/templates/workout/create.html b/app/templates/workout/create.html index 1f6d136..628ef74 100644 --- a/app/templates/workout/create.html +++ b/app/templates/workout/create.html @@ -59,7 +59,7 @@ <i class="fa fa-calculator"></i> </div> </div> - {{ entry['units'](class_='input') }} + {{ entry['units'](class_='input', placeholder="Reps") }} </div> <p class="button is-danger" onclick="handleDel(this)"> <span class="icon is-small"> diff --git a/app/templates/workout/record_select.html b/app/templates/workout/record_select.html index 3f6bc76..ccc8ea9 100644 --- a/app/templates/workout/record_select.html +++ b/app/templates/workout/record_select.html @@ -29,7 +29,7 @@ <div class="card"> <div class="card-content"> <div class="content"> - <p style="text-align: center;">You have no workouts.</p> + <p style="text-align: center;">You have no workouts. Why not create one?</p> <div class="buttons is-centered"> <a class="button is-primary" href="../workout/create"> <span class="icon is-small"> |
