The fields are not present on the form. I trying to figure out my flow, but right now I have a start page with only 2 fields (out of 70 or so) to create the basic entr (title, url and first and last name) upon submittal they are taken to an edit form for that entry, which is then filled with zeros.
Here is the code for the first page where the entry is created:
{exp:safecracker
channel="case_evaluations"
return="case-evaluation/form/ENTRY_ID"
id="begin"
class="standard"
safecracker_head="no"
dynamic_title="[cef_last_name], [cef_first_name] Case Evaluation Form"
}
<h3><em>Let's Begin</em></h3>
<ul>
<li>
<label class="desc required" for="first_name">Name</label>
<span>
<input name="cef_first_name" type="text" class="field text fn required" value="" size="8" tabindex="1" />
<label for="cef_first_name">First</label>
</span>
<span>
<input name="cef_last_name" type="text" class="field text ln required" value="" size="14" tabindex="2" />
<label for="cef_last_name">Last</label>
</span>
</li>
</ul>
<input class="submit-btn" type="submit" value="Begin" />
{/exp:safecracker}