Label on search form.

git-svn-id: https://develop.svn.wordpress.org/trunk@950 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2004-02-27 19:22:56 +00:00
parent 5fbd33f44e
commit fb319a95cb
1 changed files with 4 additions and 3 deletions

View File

@ -75,10 +75,11 @@ require('wp-blog-header.php');
<?php wp_list_cats(); ?>
</ul>
</li>
<li id="search">Search:
<form id="searchform" method="get" action="<?php echo $PHP_SELF; ?>">
<li id="search">
<label for="s">Search:</label>
<form id="searchform" method="get" action="<?php echo $PHP_SELF; ?>">
<div>
<input type="text" name="s" size="15" /><br />
<input type="text" name="s" id="s" size="15" /><br />
<input type="submit" name="submit" value="search" />
</div>
</form>