Provides a two column form table along with various `<ft_*>` tags available for the individual rows and form fields, as shown in the below example. A few quick notes regarding the tags below:
The below example quickly showcases all form fields available via Syrus tags.
<s:form_table>
<s:ft_textbox name="username">
<s:ft_textbox name="password" type="password">
<s:ft_seperator label="Additional Info">
<s:ft_select name="status">
<option>Active</option>
<option>Inactive</option>
<option>Pending</option>
</s:ft_select>
<s:ft_boolean name="subscribe" value="1" label="Would you like to receive updates?">
<s:ft_amount name="amount" label="Donation">
<s:ft_date_interval_selector name="frequency" value="M1">
<s:ft_date_selector name="time_to_call" required="1">
<s:ft_time_selector name="time_to_call" required="1">
<s:ft_phone name="phone">
<s:ft_textarea name="about_me">
<s:ft_submit value="create" label="Register Now">
</s:form_table>