Why isn't my form submitting all attribute values correctly?

Hello, i have a very simple problem but i can not for the life of me figure out what is wrong.

To keep it short. I have a GET form with checkboxes. When i check one off and press submit, it only submits the name=“xx” but not the value=“xxx”, but this only occurs when “name=” and “value=” has different strings. Below is my code.


  

    # Find gulv
    ### Vælg gulv og klik næste.
  

  

In the example, if i check off “gulve” and submits, the value i get in the URL is “q=” (notice “name=” and “value=” are different).

However, if i check off “hello” and submits, the value i get in the URL is the correct one; “hello=hello” (notice “name=” and “value=” has identical string).

I need the “name=” to be name=“q” on all the inputs. Anybody know what i am doing wrong??