> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://docs.clientexec.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# Adding a Clientexec Login Form to Your External Website

If you’d like users to log in to Clientexec directly from your main website, you can embed a simple login form that redirects to your Clientexec installation.

### 📄 Sample Login Form

Below is an example form you can add to your external website:

```
<form method='post' name='login' action='http://yourdomain.com/path_to_ce/index.php?fuse=admin&action=Login'>       
  <div id='youEmail'><input type='text' name='email' placeholder='Email Address'></div>  
  <div id='youPassw'><input type='password' name='passed_password' placeholder='Password'></div> 
  <div id='loginbtn'>          
    <input type='submit' value='Login' name='btnSubmit' />
  </div>
</form>
```

### Notes

* 🔁 **Update the `action` URL** to reflect your actual Clientexec path
*Example: `https://yourdomain.com/clients/index.php?fuse=admin&action=Login`*
* 🎨 **Customize styling** to match your website’s look and feel using your own CSS classes or inline styles
* 🔒 This form submits user login data directly to your Clientexec system. Ensure your site uses **HTTPS** to protect credentials during transmission.

