> For the complete documentation index, see [llms.txt](https://help.checkoutchamp.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.checkoutchamp.com/funnel-builder/creating-and-editing-funnels-pages/funnel-visualizer-and-page-builder/page-builder-2.0/page-building-tips/genders.md).

# Genders

You can have your customers choose or update their genders, when submitting an order or importing leads by choosing a Select, Radio Button, or Input element and giving it the name “gender”.

<figure><img src="/files/pyYPb5XCodc0SiDX0yY1" alt="" width="351"><figcaption></figcaption></figure>

The only values that will be passed are M or F.

Here are 3 examples:

**Input**

```
  <input type="text" name="gender" placeholder="" id="i2p3bq" customval="" class="form-input fk-form-input">
```

**Select**

```
 <select name="gender" type="select" customval="" value="" id="i4o7wr" class="fk-form-select select"><option data-text="text" value="" data-secondsdelay="">- Select Option -</option><option data-text="text" value="M" data-secondsdelay="">M</option><option data-text="text" value="F" data-secondsdelay="">F</option></select>
```

**Radio**

```
  <div data-secondsdelay="" class="form-check fk-form-radio-button-parent" id="id1db">		<input type="radio" value="M" opencheckboxsection="" onclick="checkBoxChange(attributes)" name="gender" required="" id="inbh4n" checked="" class="fk-form-general-radio-checkbox fk-form-radio">		<label class="form-check-label">Radio</label>	  </div>
```

You will need 2 radio buttons to choose M or F
