public_html/layout/professional_css/profiles/contactuserform.thtml
author Tom <websitemaster@cogeco.net>
Wed, 01 Feb 2012 20:35:07 -0500
branchHEAD
changeset 8487 e61a1038595a
parent 8069 d577fa397d82
permissions -rw-r--r--
CC setting is now an admin option. Original patch provided by Rouslan Placella. (feature request #0001259)
     1 
     2 <!-- profiles/contactuserform.thtml { -->
     3 
     4 <form action="{site_url}/profiles.php" method="post" id="contactuserform" class="compact">
     5 
     6   <div class="user_basic">
     7     <p class="message">{lang_description}</p>
     8 
     9     <dl>
    10       <dt><label for="contactuserform-author">{lang_username}</label></dt>
    11       <dd><input type="text" size="32" value="{username}" maxlength="32" name="author" id="contactuserform-author" class="text"{xhtml}></dd>
    12 
    13       <dt><label for="contactuserform-authoremail">{lang_useremail}</label></dt>
    14       <dd><input type="text" size="32" value="{useremail}" maxlength="96" name="authoremail" id="contactuserform-authoremail" class="text"{xhtml}></dd>
    15 
    16       <dt><label for="contactuserform-subject">{lang_subject}</label></dt>
    17       <dd><input type="text" size="32" maxlength="96" value="{subject}" name="subject" id="contactuserform-subject" class="text"{xhtml}></dd>
    18 
    19       <dt><label for="contactuserform-message">{lang_message}</label></dt>
    20       <dd><textarea rows="10" cols="50" name="message" id="contactuserform-message">{message}</textarea></dd>
    21 
    22       <dt{cc_enabled}><label for="contactuserform-cc">{lang_cc}</label></dt>
    23       <dd{cc_enabled}><input type="checkbox" name="cc" id="contactuserform-cc"{cc}{xhtml}>&nbsp;{lang_cc_description}</dd>
    24 
    25       <dd class="description">{lang_nohtml}</dd>
    26     </dl>
    27 
    28     {captcha}
    29 
    30     <ul class="submit">
    31       <li>
    32         <input type="hidden" name="what" value="contact"{xhtml}>
    33         <input type="hidden" name="uid" value="{uid}"{xhtml}>
    34         <input type="submit" value="{lang_submit}" onclick="return postconfirm();" onkeypress="return postconfirm();" class="submit"{xhtml}>
    35       </li>
    36     </ul>
    37   </div>
    38 </form>
    39 
    40 <!-- } profiles/contactuserform.thtml-->