joe123 Posted December 12, 2007 Share Posted December 12, 2007 Now your Clients don't have to fill Registrant, Admin , Tech Contacts Separately when changing there domain whois information . all they have to do is changing the Registrant Information and check the check Box next to Admin/ Tech and the new information will be copied from the Registrant . download the file here: http://www.hosting777.com/clientareadomaincontactinfo.zip Joe 0 Quote Link to comment Share on other sites More sharing options...
othellotech Posted December 14, 2007 Share Posted December 14, 2007 The requested URL /clientareadomaincontactinfo.zip was not found on this server. How about just pasting what you've changed ? 0 Quote Link to comment Share on other sites More sharing options...
joe123 Posted December 14, 2007 Author Share Posted December 14, 2007 Sorry , i removed that URL here is the code for (clientareadomaincontactinfo.tpl) ------------------------------------- <p><strong> » {$LANG.domaincontactinfo}</strong></p> <p>{$LANG.domainname}: <strong>{$domain}</strong></p> <form name="domainContactsForm" method="post" action="{$smarty.server.PHP_SELF}?action=domaincontacts"> <input type="hidden" name="sub" value="save"> <input type="hidden" name="domainid" value="{$domainid}"> {foreach key=contactdetail item=values from=$contactdetails name=for} <p><strong>{$contactdetail}</strong>{if $smarty.foreach.for.iteration!=1}<input style="margin:0 0 0 10px" type="checkbox" onclick="useRegistrantInfo(this.checked,{$smarty.foreach.for.iteration})" /> Use Registrant Information{/if}</p> <table width="100%" id="tbl{$smarty.foreach.for.iteration}"> {foreach key=name item=value from=$values} <tr><td width=120 align="right">{$name}</td><td><input type="text" name="contactdetails[{$contactdetail}][{$name}]" value="{$value}" size="30"></td></tr> {/foreach} </table> {/foreach} <p align="center"><input type="submit" value="{$LANG.clientareasavechanges}"></p> </form> <form method="post" action="{$smarty.server.PHP_SELF}?action=domaindetails"> <input type="hidden" name="id" value="{$domainid}" /> <p align="center"><input type="submit" value="{$LANG.clientareabacklink}" /></p> </form> {literal} <script type="text/javascript"> function useRegistrantInfo(chk,n){ var currTable = document.getElementById("tbl"+n); var cInp = currTable.getElementsByTagName("INPUT"); if(chk){ var regInfoTable = document.getElementById("tbl1"); var rInp = regInfoTable.getElementsByTagName("INPUT"); for(var i=0;i<rInp.length;i++){ cInp[i].value = rInp[i].value; cInp[i].readOnly = true; } }else{ for(var i=0;i<cInp.length;i++){ cInp[i].readOnly = false; } } } </script> {/literal} 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.