1
Guys, I’m having the following problem sending the form:
Follow part of the form code and validation:
<div class="form-group">
<label for="sexoFunc" class="control-label col-sm-2">Sexo:</label>
<div class="radio-inline">
<label for="masc">
<input type="radio" value="M" name="optradio" id="masc">Masculino</label>
</div>
<div class="radio-inline">
<label for="fem">
<input type="radio" value="F" name="optradio" id="fem">Feminino</label>
</div>
</div>
*It’s my first time posting on Stack, sorry if I did something wrong.