Forum
Members Registration form html issues
Hello,
I am trying to out put a list of options for the registering member to select.
However, I'm struggling to find away to achieve things.
my perch code is below:
<label for="shifts">Full or Part Time Working Hours ?</label>
<select class="form-control" id="shifts">
<perch:input id="working_hours" type="radio" label="Working Hours" options="Full Time, Part Time" />
</select>
my normal code prior to perch is:
<label for="shifts">Full or Part Time Working Hours ?</label>
<select class="form-control" id="shifts">
<option>Full Time</option>
<option>Part Time</option>
</select>
help appreciated
thanks
Perfect! thanks !