Change predefine selection
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
29
index.html
29
index.html
@@ -11,24 +11,16 @@
|
||||
<script src="repTypes.js"></script>
|
||||
<link href="style.css" rel="stylesheet" type="text/css">
|
||||
<h1>Workout</h1>
|
||||
<p>
|
||||
Today's workout muscle group:
|
||||
<select id="workout-muscle">
|
||||
<option value="chest-triceps">Chest, Triceps</option>
|
||||
<option value="back-biceps">Back, Biceps</option>
|
||||
<option value="leg">Leg</option>
|
||||
</select>
|
||||
</p>
|
||||
<p>
|
||||
Today's workout type:
|
||||
<select id="workout-type">
|
||||
<option value="strength">Strength</option>
|
||||
<option value="strength-endurance">Strength-Endurance</option>
|
||||
</select>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Today's exercises:
|
||||
<div id="workout-selection-area">
|
||||
<h2>Load Predefined Workout</h2>
|
||||
<button class="loadPredefinedWorkout" id="load-leg-strength">Legs Strength</button>
|
||||
<button class="loadPredefinedWorkout" id="load-body-strength">Upper Body Strength</button>
|
||||
<button class="loadPredefinedWorkout" id="load-leg-hyp">Legs Hypertrophy</button>
|
||||
<button class="loadPredefinedWorkout" id="load-chest-hyp">Chest-Triceps Hypertrophy</button>
|
||||
<button class="loadPredefinedWorkout" id="load-back-hyp">Back-Biceps Hypertrophy</button>
|
||||
</div>
|
||||
<h2>Today's Workout</h2>
|
||||
<ul id="exercise-list">
|
||||
<li> Exercise:
|
||||
<select name="exercise-type" id="exercise-type-1">
|
||||
@@ -41,14 +33,13 @@
|
||||
<option value="12-15">12-15</option>
|
||||
<option value="15-20">15-20</option>
|
||||
<option value="pyramid">Pyramid</option>
|
||||
<option value="drop5-8">Drop Set 5-8</option>
|
||||
<option value="tripledrop5-8">Triple Drop Set 5-8</option>
|
||||
</select>
|
||||
Reps done: <input type="number" name="repetitions-done" id="repetitions-done-1" min="0" max="100">
|
||||
Weight done: <input type="number" name="weight-done" id="weight-done-1" min="0" max="2000">
|
||||
</li>
|
||||
</ul>
|
||||
<button id="add-exercise">Add exercise</button>
|
||||
</p>
|
||||
|
||||
<script src="main.js"></script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user