WebAIM - Web Accessibility In Mind

E-mail List Archives

Multiple form inputs as a list item

for

From: Rob Unsworth
Date: Jan 7, 2010 10:30PM


Hi,

I came accross this today and was wondering what you guys would make of
it.


<form name="newpage" method="post" action="/admin_access/">

<ul>
<li>
<div class="wlh2">Member Login</div>
<table align="center" cellpadding="0px" cellspacing="0px"
border="0">
<tr> <td valign="top" width="120">First Name:</td>
<td valign="top"><input type="text"
maxlength="255" name="admin_part1" /><br /><br /></td>
</tr>
<tr> <td valign="top" width="120">Last Name:</td>
<td valign="top"><input type="text"
maxlength="255" name="admin_part2" /><br /><br /></td>
</tr>
<tr> <td valign="top">Password:</td>
<td valign="top"><input type="password"
name="admin_part3" /><br /><br /></td>
</tr>
<tr> <td valign="top"></td>
<td valign="top"><input type="submit"
name="submit" value="login" /></td>
</tr>
</table>
</li>
</ul>
</form>


Rob.