Created
June 29, 2011 21:38
-
-
Save bendavis78/1055055 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% load formhelper %} | |
{% error_list form "non_field" %} | |
<fieldset> | |
<legend>Your Info</legend> | |
{% form_row first_name middle_name last_name %} | |
{% form_row email birth_date %} | |
{% form_field referred_by %} | |
</fieldset> | |
<fieldset> | |
<legend>Phone Numbers</legend> | |
{% form_row home_phone mobile_phone %} | |
{% form_row work_phone fax %} | |
{% form_field preferred_contact_method %} | |
</fieldset> | |
<fieldset> | |
<legend>Address</legend> | |
{% form_field address_line_1 %} | |
{% form_field address_line_2 %} | |
{% form_row city state zip %} | |
</fieldset> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment