Hello fellow EE’ers,
I’m having a heck of time getting Safecracker to print my form. Oddly, it has a appeared with the same very code but mostly it doesn’t show up. So I’m coming to you for your insights…
Here’s the code:
<div id="maintenance_form">
{exp:safecracker channel="maintenance" return="maintenance/thank_you" recipients="[email protected]"}
<div class="inputWrapper">
<label for="title">Full Name</label>
<input type="text" name="title" id="title" value="{title}" />
</div>
<div class="inputWrapper last">
<label for="maintenance_property_address" >Property Address</label>
<input type="text" name="maintenance_property_address" />
</div>
<div class="inputWrapper">
<label for="maintenacne_home_phone">Home Phone</label>
<input type="text" name="maintenance_home_phone" />
</div>
<div class="inputWrapper last">
<label for="maintenance_cell_phone">Cell Phone</label>
<input type="text" name="maintenance_cell_phone" />
</div>
<div class="inputWrapper">
<label for="maintenance_email">Email Address</label>
<input type="text" name="maintenance_email" />
</div>
<div class="inputWrapper">
<label for="maintenance_issue">Maintenance Issue</label>
<select id="maitenance_issue" name="maintenance_issue">
<option>Select from the options below</option>
<option>Fire</option>
<option>Air Conditioning Repair</option>
<option>Heat Repair</option>
<option>Clogged Toiled or Drain</option>
<option>Pipe Broken</option>
<option>Broken Doorknob, Lock or Window</option>
<option>No Hot Water</option>
<option>No Electricity</option>
<option>Other</option>
</select>
</div>
<div class="inputWrapper_full">
<label class="left" for="maintenance_message">Detailed Description of Your Maintenance Issue</label>
<textarea id="maintenance_message" name="maintenance_message" rows="10" cols="83"></textarea>
</div>
<input class="send_form" name="submit" type='submit' value='' />
{/exp:safecracker}
<div class="clear"></div>
</div>Here’s the page (at the bottom, Online Maintenance Request Form): http://test.hallmarkrentals.com/residential/
Thanks.