Form checkbox double label?

Permalink
Hi,

I'm trying to add a form with a few checkboxes. But I see that Concrete5 adds the label twice in the from. One time a 'control-label' and a second label which includes the checkbox and again the same label text. I don't want that second label text since I can't style it and I don't know how to get it away. Anyone knows a solutions for this?
<div class="form-group">
            <label class="control-label" for="akID[28][value]">Light</label>
    <div class="checkbox">
    <label>
        <input type="checkbox" value="1" name="akID[28][value]">
       " Light "    </label>
</div></div>