I often use a snippet to build forms. well, two.
one gets me setup:
Code: Select all
<form id="" action="">
<fieldset>
<legend class="accessibility"></legend>
<button type="submit" value=""></button>
</fieldset>
</form>
and then on the inside I'll use this to fill it up. sometimes it's just easier to type but this can be handy because it's asks you for the key bits and builds it.
Code: Select all
<label for="%[Label for?]%">%[Label Text]%</label>
<input type="%[Form Element Type]=[text]%" id="%[Element ID]%" />
thought I'd share in case some one finds it useful.