Make WordPress Core


Ignore:
Timestamp:
05/19/2004 07:09:32 AM (21 years ago)
Author:
saxmatt
Message:

Formatting fix for profile information.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/profile.php

    r1317 r1318  
    232232<?php } ?>
    233233<div class="wrap">
     234<h2><?php _e('Profile'); ?></h2>
    234235<form name="profile" id="profile" action="profile.php" method="post">
    235236    <p>
     
    237238    <input type="hidden" name="checkuser_id" value="<?php echo $user_ID ?>" />
    238239  </p>
    239   <p><strong><?php _e('Login:') ?></strong> <?php echo $profiledata->user_login ?> | <strong><?php _e('Level:') ?></strong>
    240     <?php echo $profiledata->user_level ?> | <strong><?php _e('Posts:') ?></strong>
    241     <?php
    242     $posts = get_usernumposts($user_ID);
    243     echo $posts;
    244     ?>
    245     </p>
     240
    246241    <style type="text/css" media="screen">
    247242    th { text-align: right; }
     
    251246      <th width="33%" scope="row"><?php _e('Login:') ?></th>
    252247      <td width="73%"><?php echo $profiledata->user_login; ?></td>
    253     </tr>   
    254     <tr>
    255       <th width="33%" scope="row"><?php _e('First name:') ?></th>
    256       <td width="73%"><input type="text" name="newuser_firstname" id="newuser_firstname" value="<?php echo $profiledata->user_firstname ?>" /></td>
     248    </tr>
     249    <tr>
     250      <th scope="row"><?php _e('Level:') ?></th>
     251      <td><?php echo $profiledata->user_level; ?></td>
     252    </tr>
     253    <tr>
     254      <th scope="row"><?php _e('Posts:') ?></th>
     255      <td>    <?php
     256    $posts = get_usernumposts($user_ID);
     257    echo $posts;
     258    ?></td>
     259    </tr>
     260    <tr>
     261      <th scope="row"><?php _e('First name:') ?></th>
     262      <td><input type="text" name="newuser_firstname" id="newuser_firstname" value="<?php echo $profiledata->user_firstname ?>" /></td>
    257263    </tr>
    258264    <tr>
Note: See TracChangeset for help on using the changeset viewer.