Redirect Home Page to Dashboard HTML

#HTML #HomePage #Redirect #Dashboard

Updated over a week ago

This HTML will make it so that any user that visits the Home Page is redirected to their Dashboard instead.

Note: Removing this HTML can be difficult. Please contact support if you need the URL removed.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<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>

Did this answer your question?