I have this ul in my form
The and elements are not form elements, so they will not be submitted when POSTing the form. You either need to convert the values to be form controls e.g. radio buttons or selects, or, add some event handling javascript to the elements so that when they're selected (or whatever event is performed on them) a hidden field is updated with the value. The hidden form field will get submitted in the POST.