Skip to content

Commit

Permalink
Account Settings: Vertical aligned form labels.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate Jones committed Mar 18, 2015
1 parent f982637 commit 1c394b0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions core/user_settings/user_edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -308,16 +308,16 @@
echo "</tr>\n";

echo " <tr>";
echo " <td width='30%' class='vncellreq' align='left'>".$text['label-username']."</td>";
echo " <td width='30%' class='vncellreq' align='left' valign='top'>".$text['label-username']."</td>";
echo " <td width='70%' class='vtable' align='left'>$username</td>";
echo " </tr>";

echo " <tr>";
echo " <td class='vncell' align='left'>".$text['label-password']."</td>";
echo " <td class='vncell' align='left' valign='top'>".$text['label-password']."</td>";
echo " <td class='vtable' align='left'><input type='password' autocomplete='off' class='formfld' name='password' value=\"\"></td>";
echo " </tr>";
echo " <tr>";
echo " <td class='vncell' align='left'>".$text['label-confirm-password']."</td>";
echo " <td class='vncell' align='left' valign='top'>".$text['label-confirm-password']."</td>";
echo " <td class='vtable' align='left'><input type='password' autocomplete='off' class='formfld' name='confirm_password' value=\"\"></td>";
echo " </tr>";

Expand All @@ -337,7 +337,7 @@
}
else {
echo " <tr>\n";
echo " <td width='30%' class=\"vncell\">\n";
echo " <td width='30%' class=\"vncell\" valign='top'>\n";
echo " ".$text['label-status']."\n";
echo " </td>\n";
echo " <td width='70%' class=\"vtable\" align='left'>\n";
Expand Down Expand Up @@ -415,7 +415,7 @@
*/

echo " <tr>\n";
echo " <td width='20%' class=\"vncell\">\n";
echo " <td width='20%' class=\"vncell\" valign='top'>\n";
echo " ".$text['label-user_language']."\n";
echo " </td>\n";
echo " <td class=\"vtable\" align='left'>\n";
Expand All @@ -441,7 +441,7 @@
echo " </tr>\n";

echo " <tr>\n";
echo " <td width='20%' class=\"vncell\">\n";
echo " <td width='20%' class=\"vncell\" valign='top'>\n";
echo " ".$text['label-time']."\n";
echo " </td>\n";
echo " <td class=\"vtable\" align='left'>\n";
Expand Down

0 comments on commit 1c394b0

Please sign in to comment.