Customize Login Page
The login page HTML can be modified with a custom template. Custom templates are located in the webserver templates folder, in most installations the pathway is <Iotellect installation folder>\admin\web\static\templates
To create a custom template edit the file loginPage.html or create it in the templates directory if it doesn’t already exist.
The template must contain the following variables:
{{loginUsername}}text field for the username.{{loginPassword}}text field for the password.{{loginSubmit}}button to submit login form.
Optional variables:
{{formError}}container which displays form submission error messages.{{loginRegister}}button to open registration form.
An example minimum template:
<div>
<!--login input field-->
{{loginUsername}}
<!--password input field-->
{{loginPassword}}
<!--submit button-->
{{loginSubmit}}
</div>Was this page helpful?