You can install the login page (specifically the fields “Username” and “Password”) for Logistiqo on your own website.
The main advantage here is that external users (see also FAQ External customer and subcontractor access) can log in directly via your website and thus only see your company appearance and not that of Logistiqo.
If you are familiar with the programming of your website, you can integrate the following code on your website and customize it with CSS, otherwise ask the administrator of your website for advice.
The code is as follows:
<form method="POST" action="https://YOURSUBDOMAIN.logistiqo.com">
<div>
<input id="username" type="text" name="j_username" class="input" placeholder="Benutzername" autocomplete="off" /><br />
<input type="password" name="j_password" class="input" placeholder="Kennwort" autocomplete="off" /><br />
<input class="submit" type="submit" value="Anmelden" /><br />
</div>
</form>
<script>document.getElementById('username').focus();</script>