Articles on: Theme and Style

How to create an external registration form

If you want to create an external registration form on your website linking to your Clientexec, you can use a form like this:

<?php
    include '/home/user/public_html/clientexecpath/library/utilities/setup_environment.php';
?>
<form method="post" action="clientexecpath/index.php?fuse=home&action=createaccount" class="support-ticket-form">
    <input type="hidden" value="<?php echo CE_Lib::getSessionHash(); ?>" name="sessionHash" />
	Name: <input type="text" name="guestFirstName" /> <input type="text" name="guestLastName" /> <br/>
	Email: <input type="text" name="guestEmail" />
	<input type="submit" />
</form>

Remember to adjust the paths to point towards your Clientexec installation.

Updated on: 24/02/2023

Was this article helpful?

Share your feedback

Cancel

Thank you!