/
var
/
www
/
html
/
sugardevdemo25
/
modules
/
Users
/
Upload File
HOME
<!-- /* * Your installation or use of this SugarCRM file is subject to the applicable * terms available at * http://support.sugarcrm.com/Resources/Master_Subscription_Agreements/. * If you do not agree to all of the applicable terms or do not have the * authority to bind the entity as an authorized representative, then do not * install or use this SugarCRM file. * * Copyright (C) SugarCRM Inc. All rights reserved. */ --> <!-- BEGIN: main --> <style> #subjectfield { height: 1.6em; } </style> {JAVASCRIPT} <script type="text/javascript" language="Javascript" src="include/javascript/tiny_mce/tiny_mce.js"></script> <script type="text/javascript"> function checkSignatureForm() { if(document.getElementById('name').value == "") { alert('{MOD.LBL_EMAIL_SIGNATURE_ERROR1}'); return false; } else { return true; } } </script> <form name="EditView" method="POST" action="index.php" enctype="multipart/form-data"> {sugar_csrf_form_token} <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td> <input type="hidden" name="module" value="Users"> <input type="hidden" name="record" value="{ID.ESCAPE_HTML_ATTR}"> <input type="hidden" name="action"> <input type="hidden" name="form"> <input type="hidden" name="return_module" value="{RETURN_MODULE.ESCAPE_HTML_ATTR}"> <input type="hidden" name="return_id" value="{RETURN_ID.ESCAPE_HTML_ATTR}"> <input type="hidden" name="return_action" value="{RETURN_ACTION.ESCAPE_HTML_ATTR}"> <input type="hidden" name="inpopupwindow" value="{INPOPUPWINDOW.ESCAPE_HTML_ATTR}"> <input type="hidden" name="old_id" value="{OLD_ID.ESCAPE_HTML_ATTR}"> <input type="hidden" name="the_user_id" value="{THE_USER_ID.ESCAPE_HTML_ATTR}"> <input title="{APP.LBL_SAVE_BUTTON_TITLE.ESCAPE_HTML_ATTR}" accessKey="{APP.LBL_SAVE_BUTTON_KEY.ESCAPE_HTML_ATTR}" class="button" onclick="this.form.action.value='SaveSignature'; return checkSignatureForm();" type="submit" name="button" value=" {APP.LBL_SAVE_BUTTON_LABEL.ESCAPE_HTML_ATTR} " > <input title="{APP.LBL_CANCEL_BUTTON_TITLE.ESCAPE_HTML_ATTR}" accessKey="{APP.LBL_CANCEL_BUTTON_KEY.ESCAPE_HTML_ATTR}" class="button" onclick="{CANCEL_SCRIPT}" type="submit" name="button" value=" {APP.LBL_CANCEL_BUTTON_LABEL.ESCAPE_HTML_ATTR} "> </td> <td align="right" nowrap><span class="required">{APP.LBL_REQUIRED_SYMBOL.ESCAPE_HTML}</span> {APP.NTC_REQUIRED.ESCAPE_HTML}</td> <td align='right'>{ADMIN_EDIT}</td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0" class="edit view"> <tr> <td> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="15%" scope="row"> <slot> {MOD.LBL_SIGNATURE_NAME.ESCAPE_HTML} <span class="required">{APP.LBL_REQUIRED_SYMBOL.ESCAPE_HTML}</span> </slot> </td> <td width="85%" > <slot> <input id="name" name='name' tabindex="10" type="text" size='30' maxlength="255" value="{NAME.ESCAPE_HTML_ATTR}"> </slot> </td> </tr> <tr> <td colspan=2> </td> </tr> <tr> <td valign="top" scope="row"> <slot> {MOD.LBL_SIGNATURE.ESCAPE_HTML}: </slot> </td> <td > <textarea id="sigText" cols="100" rows="10" name="description">{SIGNATURE_TEXT.SANITIZE_HTML}</textarea></div> </td> </tr> </table> </td> </tr> </table> </form> {tinyjs} <!-- END: main -->