Esempio n. 1
0
    <tr>
      <td><label for="name">Display Name: </label></td>
      <td><input type="text" name="name" id="name" value="<?php 
echo $invalidSubmit ? isset($_REQUEST['name']) ? $_REQUEST['name'] : '' : $userEditor->getCurrentFullName();
?>
" placeholder="Name Shown to User" size="25" maxlength="254" required tabindex="<?php 
echo $tabIndex++;
?>
" /></td>
      
      <td><label for="gift">Admin Gift Notes: </label></td>
      <td><textarea name="gift" id="gift" cols="20" rows="3" placeholder="Our gift notes" tabindex="<?php 
echo $tabIndex++;
?>
"><?php 
echo $invalidSubmit ? isset($_REQUEST['gift']) ? $_REQUEST['gift'] : '' : $userEditor->getCurrentGift();
?>
</textarea></td>
    </tr>
    <tr>
      <td><label for="email">Email: </label></td>
      <td><input type="text" name="email" id="email" value="<?php 
echo $invalidSubmit ? isset($_REQUEST['email']) ? $_REQUEST['email'] : '' : $userEditor->getCurrentUserEmail();
?>
" size="25" maxlength="254" tabindex="<?php 
echo $tabIndex++;
?>
" /></td>
      
      <td><label for="isThankYouSent">Thank You Sent?</label></td>
      <td><input type="checkbox" <?php