Changed experience input.
This commit is contained in:
parent
9df4cba4fc
commit
85e4078d15
4 changed files with 23 additions and 6 deletions
Binary file not shown.
Binary file not shown.
|
@ -42,9 +42,16 @@
|
|||
<br />
|
||||
<br />
|
||||
<select>
|
||||
<option>0-6 months</option>
|
||||
<option>6 months - 2 years</option>
|
||||
<option>2 or more years</option>
|
||||
<option>0 years</option>
|
||||
<option>1 year</option>
|
||||
<option>2+ years</option>
|
||||
</select>
|
||||
<select>
|
||||
<?php
|
||||
for ($i = 0; $i <= 11; $i++) {
|
||||
echo '<option>' . $i . ' months</option>'
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
<br />
|
||||
<br />
|
||||
|
|
|
@ -42,13 +42,23 @@
|
|||
<br />
|
||||
<br />
|
||||
<select>
|
||||
<option>0-6 months</option>
|
||||
<option>6 months - 2 years</option>
|
||||
<option>2 or more years</option>
|
||||
<option>0 years</option>
|
||||
<option>1 year</option>
|
||||
<option>2+ years</option>
|
||||
</select>
|
||||
<select>
|
||||
<?php
|
||||
for ($i = 0; $i <= 11; $i++) {
|
||||
echo '<option>' . $i . ' months</option>'
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<label>How many days would you like to workout this week?</label>
|
||||
<br />
|
||||
<br />
|
||||
<select>
|
||||
<?php
|
||||
for ($i = 1; $i <= 6; $i++) {
|
||||
|
|
Loading…
Reference in a new issue