Posted by Toby Inkster on 03/13/06 23:07
gerg wrote:
> Username: <input box> Password: <input box> <submit button>
>
> However apon validation it says that I can't have textual elements in a
> form without a wrapper of some sort, <p> or <div> however apon adding
> these elements around the text I can no longer keep all the elements in
> a strait line.
<form ...>
<div>
<label>Username: <input name="username"></label>
<label>Password: <input name="password" type="password"></label>
<input type="submit" value="Log In">
</div>
</form>
--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact
[Back to original message]
|