Last active
November 24, 2015 02:43
-
-
Save nfriend21/d70c3e8d7f2ee9c0335a 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
<!-- INSTRUCTIONS: | |
1. Must change value of input with id="inquiry_inquiry_source" to one of the following: | |
master_demo_form (if artist) | |
art_gallery_demo_form (if art gallery) | |
print_studio_demo_form (if print_studio) | |
2. Add dynamic fields into appropriate section below. The name attribute of the input/select field must follow this nomenclature: | |
name="inquiry[dynamic_fields][field_name]" (where "field_name" is the name of the custom field. use underscores and NO SPACES). | |
--> | |
<div id="asf_contact_form_container"> | |
<form accept-charset="UTF-8" action="http://www.artstorefronts.com/inquiries" class="new-inquiry" id="new_inquiry" method="post"> | |
<!-- REQUIRED FIELDS. DO NOT MODIFY --> | |
<div style="margin:0;padding:0;display:inline"> | |
<input name="utf8" type="hidden" value="✓"> | |
<input name="authenticity_token" type="hidden" value="SZNLQi7WeCwt3PHHaYXiEepwttXg/oEDjNvT3MEu3R8="> | |
</div> | |
<input id="inquiry_reseller_id" name="inquiry[reseller_id]" type="hidden" value="1"> | |
<input id="inquiry_inquiry_source" name="inquiry[inquiry_source]" type="hidden" value="master_demo_form"> | |
<div class="field"> | |
<label for="inquiry_name">Name</label> | |
<input id="inquiry_name" name="inquiry[name]" size="30" type="text"> | |
</div> | |
<div class="field"> | |
<label for="inquiry_email">Email</label> | |
<input id="inquiry_email" name="inquiry[email]" size="30" type="text"> | |
</div> | |
<div class="field"> | |
<label for="inquiry_phone_number">Phone number</label> | |
<input class="" data-options="disable-for-touch: true" data-tooltip="" id="inquiry_phone" name="inquiry[phone]" placeholder="e.g. 555-555-5555" size="30" type="text"> | |
</div> | |
<!-- /REQUIRED FIELDS --> | |
<!-- DYNAMIC FIELDS --> | |
<div class="field"> | |
<label for="inquiry_dynamic_fields_nick">Nick</label> | |
<input id="inquiry_dynamic_fields_nick" name="inquiry[dynamic_fields][nick]" type="text"> | |
</div> | |
<!-- /DYNAMIC FIELDS --> | |
<div class="form_row"> | |
<input class="" id="create_inquiries" name="commit" type="submit" value="Send"> | |
</div> | |
</form> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment