form

Generates the search form for use in conjunction with the results tag.

Params

The available parameters used with the form Template Tag.

return

The template(s) to direct users to upon form submission

class

Any CSS class, if any, to apply to the generated form

Example

Be aware, that the input names are mapped internally to the specific member field IDs. So you'll only use the Short Name to query on.

<div id="member_left">
  <p class="">Find a Member</p>
  {exp:member_list:form return="{segment_1}"}
    <p>First Name: <br />
    <input name="first_name" type="text" value="{first_name}" /></p>
    <p>Last Name: <br />
    <input name="last_name" type="text" value="{last_name}" /></p>
    <p>City:<br />
    <input name="city" type="text" value="{city}" /></p>
    <p>State: <br />
      <input name="state" type="text" value="{state}" /></p>
    <p>Country: <br />
      <input name="country" type="text" value="{country}" /></p>
    <p align="center">
    <input type="submit" value="Search">
    </p>
    <p>&nbsp;</p>
  {/exp:member_list:form}
</div>