Forum

Thread tagged as: Question, Forms, Members

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

Gary Thompson

Gary Thompson 0 points

  • 5 years ago
Drew McLellan

Drew McLellan 2638 points
Perch Support

<perch:label for="working_hours">Full or Part Time Working Hours?</perch:label>
<perch:input id="working_hours" type="select" class="form-control" label="Working Hours" options="Full Time, Part Time" />

Perfect! thanks !