How to Redirect Landing Page to User Dashboard
Taylor Roderick avatar
Written by Taylor Roderick
Updated over a week ago

When logging in, ETO defaults to land on the Home Page. There are two ways to change the landing page so when logging in, users are redirected to their Dashboard.

Use Manage My Site (NEW):

1. Go to Site Administration
2. Click Manage My Site (NEW)
3. Select the Information and Settings Tab
4. Scroll to option Make 'My Dashboard' the landing page
5. Check this option
6. Click Save

Edit the HTML of the Home Page:

  1. Go to the Home Page

2. Click Edit Page
3. Select Site Home Tab
4. Select <> HTML
5. Remove any HTML currently in the Editor
6. Paste in the following code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
</head>

<body>

<div style="border-bottom: #cccccc 1px solid; text-align: center; border-left: #cccccc 1px solid; padding-bottom: 20px; background-color: #efefef; margin-top: 50px; padding-left: 20px; width: 300px; padding-right: 20px; font-family: Arial, Helvetica, sans-serif; margin-left: 35%; font-size: 14px; border-top: #cccccc 1px solid; font-weight: bold; border-right: #cccccc 1px solid; padding-top: 20px">Dashboard loading. Please wait...</div>
<script type="text/javascript">
<!--
window.location = "/Modules/Dashboard/Personal.aspx"
//-->
</script>
<div>&nbsp;</div>

</body>
</html>
7. Save
Please note: When trying to remove the HTML, you must load the Home Page and quickly select the Edit Page Button before the redirect (this can be tricky). See Remove Dashboard Redirect for more information.

Click here for more information on Manage My Site (NEW).
Click here to view the recommended HTML in the Help Manual.

Please contact Customer Support if you require additional assistance.

Did this answer your question?