Below is shown the important part of the view (.html). Key touch points are highlighted. After coding this, we will "connect it" to the model in the controller. Notes:


<form id="fields">

	<label for="count">Count</label>
	<input id="count" name="count" type="text" class="entry"/>

	<label for="log">Log</label>
	<input id="log" name="log" type="text" class="output" readonly disabled/>

	<div class="buttonBar">
		<button id="increment" type="button">+</button>
		<button id="decrement" type="button">-</button>
	</div>

</form>