I'm looking for a way to incorporate a bunch of form text inputs, and use the input from the forms to update a text area below the forms. The text area will be a chunk of HTML code to embed into the signature of an email.
For example, a user would enter their name and details into the forms, and after clicking a submit button, the page will generate a piece of HTML code for them to use in their email signature.
For the form I might have something like:
<label for="EmployeeName">Full name:</label>
<input id="EmployeeName" type="text" maxlength="30" size="20"/>
But I'm not sure how to use the values from the form to update a text field below. I've spent a good chunk of today trying to research this topic, but can't seem to turn anything up. Any help would be appreciated.