| 77 | | <fieldset id="uridiv"> |
|---|
| 78 | | <legend><?php _e('URI:') ?></legend> |
|---|
| 79 | | <div><input type="text" name="link_url" value="<?php echo $link->link_url; ?>" style="width: 95%" /></div> |
|---|
| 80 | | </fieldset> |
|---|
| 81 | | |
|---|
| 82 | | <fieldset id="namediv"> |
|---|
| 83 | | <legend><?php _e('Name:') ?></legend> |
|---|
| 84 | | <div><input type="text" name="link_name" value="<?php echo $link->link_name; ?>" style="width: 95%" /></div> |
|---|
| 85 | | </fieldset> |
|---|
| 86 | | |
|---|
| 87 | | <fieldset id="descdiv"> |
|---|
| 88 | | <legend><?php _e('Description:') ?></legend> |
|---|
| 89 | | <div><input type="text" name="link_description" value="<?php echo $link->link_description; ?>" style="width: 95%" /></div> |
|---|
| 90 | | </fieldset> |
|---|
| | 77 | <table class="editform" width="100%" cellspacing="2" cellpadding="5"> |
|---|
| | 78 | <tr> |
|---|
| | 79 | <th width="20%" scope="row" valign="top"><label for="link_url"><?php _e('URI:') ?></label></th> |
|---|
| | 80 | <td width="80%"><input type="text" name="link_url" value="<?php echo $link->link_url; ?>" style="width: 95%" /></td> |
|---|
| | 81 | </tr> |
|---|
| | 82 | <tr> |
|---|
| | 83 | <th scope="row" valign="top"><label for="link_name"><?php _e('Name:') ?></label></th> |
|---|
| | 84 | <td><input type="text" name="link_name" value="<?php echo $link->link_name; ?>" style="width: 95%" /></td> |
|---|
| | 85 | </tr> |
|---|
| | 86 | <tr> |
|---|
| | 87 | <th scope="row" valign="top"><label for="link_description"><?php _e('Description:') ?></label></th> |
|---|
| | 88 | <td><input type="text" name="link_description" value="<?php echo $link->link_description; ?>" style="width: 95%" /></td> |
|---|
| | 89 | </tr> |
|---|
| | 90 | </table> |
|---|