In HTML(all releases), the input element is an empty element; it requires no closing slash.
In XHTML, the input element requres a closing slash as do all empty elements.
If the code is correct then page 68 should be within an HTML context and the example on page 72 should be within an XHTML context OR an HTML5 context. HTML5 specs tolerate the XHTML closing slash.
The example that you are showing shows “smart quotes” (curly quotes) which are not acceptable in any coding language of which I am aware. Please be aware of details and replicate carefully .
According to the specs:
HTML4: Empty elements do not use a trailing slash in their tag. It is invalid.*
HTML5: A trailing slash in an empty element is allowed.
XHTML: The trailing slash in an empty element is required.
*) Parsing html4: a trailing slash in an empty element is ignored. Thus the occasional advice to always put a trailing slash in empty elements just to be safe does no harm: