Added model for exercises - generation coming soon.
This commit is contained in:
parent
374d797a71
commit
ce60756360
3 changed files with 32 additions and 17 deletions
14
app/Exercise.php
Normal file
14
app/Exercise.php
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace WorkoutGenerator;
|
||||||
|
|
||||||
|
use Illuminate\Database\Eloquent\Model;
|
||||||
|
|
||||||
|
class Exercise extends Model
|
||||||
|
{
|
||||||
|
protected $fillable = [
|
||||||
|
'exercise_name',
|
||||||
|
'muscle_group',
|
||||||
|
'exercise_type'
|
||||||
|
];
|
||||||
|
}
|
5
public/assets/css/styles.css
vendored
5
public/assets/css/styles.css
vendored
|
@ -174,7 +174,7 @@ body {
|
||||||
background-color:#87161a;
|
background-color:#87161a;
|
||||||
text-shadow:0px 0px 5px #000;
|
text-shadow:0px 0px 5px #000;
|
||||||
border:1px solid #000;
|
border:1px solid #000;
|
||||||
padding:5px;
|
padding:3px 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.generator input[type='checkbox'] {
|
.generator input[type='checkbox'] {
|
||||||
|
@ -191,7 +191,8 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.generator input[type='checkbox']:checked {
|
.generator input[type='checkbox']:checked {
|
||||||
background-image: url('/assets/images/check.png')
|
background-image: url('/assets/images/check.png');
|
||||||
|
background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 1024px) {
|
@media (max-width: 1024px) {
|
||||||
|
|
|
@ -26,32 +26,32 @@
|
||||||
<label>Which of the following equipment/exercise styles do you have access to and enjoy doing? Check all that apply:</label>
|
<label>Which of the following equipment/exercise styles do you have access to and enjoy doing? Check all that apply:</label>
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
<input type="checkbox" id="free-weights" value="free-weights" onClick="control()">Free Weights
|
<input type="checkbox" name="free-weights" id="free-weights" value="free-weights" onClick="control()">Free Weights
|
||||||
<br />
|
<br />
|
||||||
<input type="checkbox" id="dumbbells" value="dumbbells" disabled><span class="dtext">Dumbbells</span>
|
<input type="checkbox" name="dumbbells" id="dumbbells" value="dumbbells" disabled><span class="dtext">Dumbbells</span>
|
||||||
<br />
|
<br />
|
||||||
<input type="checkbox" id="barbells" value="barbells" disabled><span class="dtext">Barbells</span>
|
<input type="checkbox" name="barbells" id="barbells" value="barbells" disabled><span class="dtext">Barbells</span>
|
||||||
<br />
|
<br />
|
||||||
<input type="checkbox" value="selectorized">Selectorized Equipment
|
<input type="checkbox" name="selectorized" value="selectorized">Selectorized Equipment
|
||||||
<br />
|
<br />
|
||||||
<input type="checkbox" value="cables">Cable Equipment
|
<input type="checkbox" name="cables" value="cables">Cable Equipment
|
||||||
<br />
|
<br />
|
||||||
<input type="checkbox" value="calisthenics">Calisthenics
|
<input type="checkbox" name="calisthenics" value="calisthenics">Calisthenics
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
<label>How long have you consistently followed an exercise routine?</label>
|
<label>How long have you consistently followed an exercise routine?</label>
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
<select>
|
<select name="years">
|
||||||
<option>0 years</option>
|
<option value="0">0 years</option>
|
||||||
<option>1 year</option>
|
<option value="1">1 year</option>
|
||||||
<option>2+ years</option>
|
<option value="2">2+ years</option>
|
||||||
</select>
|
</select>
|
||||||
<select>
|
<select name="months">
|
||||||
<?php
|
<?php
|
||||||
for ($i = 0; $i <= 11; $i++) {
|
for ($i = 0; $i <= 11; $i++) {
|
||||||
echo '<option>' . $i . ' months</option>';
|
echo '<option value="{$i}">' . $i . ' months</option>';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</select>
|
</select>
|
||||||
|
@ -61,16 +61,16 @@
|
||||||
<label>How many days would you like to workout this week?</label>
|
<label>How many days would you like to workout this week?</label>
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
<select>
|
<select name="frequency">
|
||||||
<?php
|
<?php
|
||||||
for ($i = 1; $i <= 6; $i++) {
|
for ($i = 1; $i <= 6; $i++) {
|
||||||
echo '<option>' . $i . '</option>';
|
echo '<option value="{$i}">' . $i . '</option>';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</select>
|
</select>
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
<button name="" class="home-button">Generate My Workout!</button>
|
<button name="submit" class="home-button">Generate My Workout!</button>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue