- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-11-2024 03:17 AM - edited ‎05-11-2024 03:59 AM
Hello dear world wide team!
I am being asked to customize the employee center login page.
I want to have a video put on loop in the background and change the design of the login widget.
Could someone tell me where I can find this login page? Is it a ui_page?
How could i achieve the required?
Many thanks,
Darius
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-12-2024 07:38 AM
Hi @Dariussiriuse ,
To embed the video on login in Employee Center Portal, please follow the below steps-
1. Saving the Video file with appropriate format in the System.
2. Find the appropriate login page for ESC portal
3. Open the page and Widget (Login)
4. Clone the Login widget- Click on Clone Widget (We cannot edit/modify the OOTB widget, only option is to clone it and modify)
5. After cloning, give it a name. and update the below code in the Body HTML Template section at the very beginning.
<video autoplay muted loop id="myVideo" style="position: fixed; right: 0; bottom: 0; min-width: 100%; min-height: 100%; z-index: -100;">
<source src="LoginPage.mp4" type="video/mp4">
</video>
6. Save the Widget.
7. Attach the widget to the login page. Go to the login page again and click on instance
Update the widget from Login to NewLogin(cloned widget) (in my case)
And you are Done.
Hit the esc Portal link to login page-
https://dev23xxxx.service-now.com/esc
Wohoo, video is in the background
Enter Creds and hit Login
User is successfully Logged in
If my response has resolved your query, please consider giving it a thumbs up ‌‌ and marking it as the correct answer‌‌!
Thanks & Regards,
Sanjay Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-12-2024 01:31 AM
Hi @Dariussiriuse,
I am guessing you are talking about the following page -
If so, you can find the page via:
- Navigate to Service Portal > Portals
- Open the Employee Center portal record
- Open the Login page record
Cheers

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-12-2024 07:38 AM
Hi @Dariussiriuse ,
To embed the video on login in Employee Center Portal, please follow the below steps-
1. Saving the Video file with appropriate format in the System.
2. Find the appropriate login page for ESC portal
3. Open the page and Widget (Login)
4. Clone the Login widget- Click on Clone Widget (We cannot edit/modify the OOTB widget, only option is to clone it and modify)
5. After cloning, give it a name. and update the below code in the Body HTML Template section at the very beginning.
<video autoplay muted loop id="myVideo" style="position: fixed; right: 0; bottom: 0; min-width: 100%; min-height: 100%; z-index: -100;">
<source src="LoginPage.mp4" type="video/mp4">
</video>
6. Save the Widget.
7. Attach the widget to the login page. Go to the login page again and click on instance
Update the widget from Login to NewLogin(cloned widget) (in my case)
And you are Done.
Hit the esc Portal link to login page-
https://dev23xxxx.service-now.com/esc
Wohoo, video is in the background
Enter Creds and hit Login
User is successfully Logged in
If my response has resolved your query, please consider giving it a thumbs up ‌‌ and marking it as the correct answer‌‌!
Thanks & Regards,
Sanjay Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-13-2024 01:35 PM
Thank you!