Tell us what’s happening:
If you click on the radio inputs, you might notice both inputs within the same true/false fieldset can be selected at the same time.
Group the relevant inputs together such that only one input from a pair can be selected at a time.
You should give the second input
a name
attribute matching the name
attribute of the first input
.
Your code so far
Hey @tarvo.kaubi welcome to the forum
You just have to link the two inputs with the name atrribute as per the instructions like this
<input type="#" name="#">text
<input type="#" name="#">text
Ensure the name attribute for both the inputs are the same.
Good work so far!!
system
Closed
3
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.