Yep, Andrew saw it.
Too much copy, not enough editing on my part. Should have been.
Code:
<br/>Email Address: <br /> <input type="text" name="email"> <br />
But I disagree with Andrew: I *NEVER* give an ID to form fields unless there is some very good reason. Granted, 99% of everything I do with <form>s has to interact with server-side code, and fields without names are useless for that purpose. But even so, you don't need an ID to reference any <form> field, so why bother?
Almost the only exception is when I use
<label for="someID"> in which case of course there must be a matchind ID. But even then, I tend to use <label> with the
for= property.