Make WordPress Core


Ignore:
Timestamp:
05/04/2008 10:37:06 AM (17 years ago)
Author:
westi
Message:

Associate lables with form fields. Fixes #6859 props MarcoZ.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/setup-config.php

    r7000 r7883  
    6969    <table class="form-table">
    7070        <tr>
    71             <th scope="row">Database Name</th>
    72             <td><input name="dbname" type="text" size="25" value="wordpress" /></td>
     71            <th scope="row"><label for="dbname">Database Name</label></th>
     72            <td><input name="dbname" id="dbname" type="text" size="25" value="wordpress" /></td>
    7373            <td>The name of the database you want to run WP in. </td>
    7474        </tr>
    7575        <tr>
    76             <th scope="row">User Name</th>
    77             <td><input name="uname" type="text" size="25" value="username" /></td>
     76            <th scope="row"><label for="uname">User Name</label></th>
     77            <td><input name="uname" id="uname" type="text" size="25" value="username" /></td>
    7878            <td>Your MySQL username</td>
    7979        </tr>
    8080        <tr>
    81             <th scope="row">Password</th>
    82             <td><input name="pwd" type="text" size="25" value="password" /></td>
     81            <th scope="row"><label for="pwd">Password</label></th>
     82            <td><input name="pwd" id="pwd" type="text" size="25" value="password" /></td>
    8383            <td>...and MySQL password.</td>
    8484        </tr>
    8585        <tr>
    86             <th scope="row">Database Host</th>
    87             <td><input name="dbhost" type="text" size="25" value="localhost" /></td>
     86            <th scope="row"><label for="dbhost">Database Host</label></th>
     87            <td><input name="dbhost" id="dbhost" type="text" size="25" value="localhost" /></td>
    8888            <td>99% chance you won't need to change this value.</td>
    8989        </tr>
    9090        <tr>
    91             <th scope="row">Table Prefix</th>
    92             <td><input name="prefix" type="text" id="prefix" value="wp_" size="25" /></td>
     91            <th scope="row"><label for="prefix">Table Prefix</label></th>
     92            <td><input name="prefix" id="prefix" type="text" id="prefix" value="wp_" size="25" /></td>
    9393            <td>If you want to run multiple WordPress installations in a single database, change this.</td>
    9494        </tr>
Note: See TracChangeset for help on using the changeset viewer.