I added to my personal image, the following utility method to WAHTMLRender:<br>
<br>
labeledTextInputOn: aSymbol of: anObject<br>
&nbsp;&nbsp;&nbsp; self<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; label: [aSymbol asCapitalizedPhrase asString] value input: [];<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; textInputOn: aSymbol of: anObject<br>
<br>
This generates a quick, one-off &lt;label&gt;ed field.&nbsp; I tried
using WAHtmlRenderer&gt;&gt;#label:input: but this puts the
&lt;input&gt; tag inside the &lt;label&gt; tag's body.&nbsp; HTML
gurus, is that ok?&nbsp; Here's a sample what the above method
generates (formatted source):<br>
<br>
&lt;label for=&quot;id1&quot;&gt;<br>
&nbsp; First Name<br>
&lt;/label&gt;<br>
&lt;input type=&quot;text&quot; value=&quot;Fred&quot; name=&quot;2&quot; id=&quot;id1&quot; /&gt;<br>