Added model for exercises - generation coming soon.

This commit is contained in:
William Brawner 2015-09-05 00:24:39 -07:00
parent 374d797a71
commit ce60756360
3 changed files with 32 additions and 17 deletions

14
app/Exercise.php Normal file
View 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'
];
}

View file

@ -174,7 +174,7 @@ body {
background-color:#87161a;
text-shadow:0px 0px 5px #000;
border:1px solid #000;
padding:5px;
padding:3px 5px;
}
.generator input[type='checkbox'] {
@ -191,7 +191,8 @@ body {
}
.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) {

View file

@ -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>
<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 />
<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 />
<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 />
<input type="checkbox" value="selectorized">Selectorized Equipment
<input type="checkbox" name="selectorized" value="selectorized">Selectorized Equipment
<br />
<input type="checkbox" value="cables">Cable Equipment
<input type="checkbox" name="cables" value="cables">Cable Equipment
<br />
<input type="checkbox" value="calisthenics">Calisthenics
<input type="checkbox" name="calisthenics" value="calisthenics">Calisthenics
<br />
<br />
<br />
<label>How long have you consistently followed an exercise routine?</label>
<br />
<br />
<select>
<option>0 years</option>
<option>1 year</option>
<option>2+ years</option>
<select name="years">
<option value="0">0 years</option>
<option value="1">1 year</option>
<option value="2">2+ years</option>
</select>
<select>
<select name="months">
<?php
for ($i = 0; $i <= 11; $i++) {
echo '<option>' . $i . ' months</option>';
echo '<option value="{$i}">' . $i . ' months</option>';
}
?>
</select>
@ -61,16 +61,16 @@
<label>How many days would you like to workout this week?</label>
<br />
<br />
<select>
<select name="frequency">
<?php
for ($i = 1; $i <= 6; $i++) {
echo '<option>' . $i . '</option>';
echo '<option value="{$i}">' . $i . '</option>';
}
?>
</select>
<br />
<br />
<button name="" class="home-button">Generate My Workout!</button>
<button name="submit" class="home-button">Generate My Workout!</button>
</fieldset>
</form>
</div>