shdoclc: Add a basic generic html page for navigation errors.

Signed-off-by: Gabriel Ivăncescu <gabrielopcode@gmail.com>
This commit is contained in:
Gabriel Ivăncescu 2023-10-05 18:57:46 +03:00 committed by Alexandre Julliard
parent b38fcaf36a
commit e3c768ab55
2 changed files with 16 additions and 0 deletions

13
dlls/shdoclc/ERROR.HTM Normal file
View file

@ -0,0 +1,13 @@
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Page Load Error</title>
</head>
<body onload="javascript: if(window.location.search) document.getElementById('err').innerHTML = unescape(window.location.search.substr(1))">
<div style="margin-left:45px; width:720px;">
<h2>The page cannot be loaded because of an error</h2>
<p>Error code: <b id="err">Unknown</b></p>
</div>
</body>
</html>

View file

@ -241,3 +241,6 @@ IDR_BROWSE_CONTEXT_MENU MENU
MENUITEM "Scroll Right", IDM_SCROLL_RIGHT
}
}
/* @makedep: ERROR.HTM */
ERROR.HTM HTML "ERROR.HTM"