93 lines
3.5 KiB
JavaScript
93 lines
3.5 KiB
JavaScript
var minisrv_service_file = true;
|
|
|
|
// remove restrictions once this page is shown, since the user will be 'trapped' anyway
|
|
session_data.disableLockdown();
|
|
ssid_sessions[socket.ssid].set("bad_disk_shown", true)
|
|
|
|
headers = `200 OK
|
|
Content-type: text/html`;
|
|
|
|
data = `<html>
|
|
<head>
|
|
<display switchtowebmode nooptions nostatus skipback clearback> <title>Please Call</title>
|
|
</head>
|
|
<body bgcolor="#191919" text="#42CC55" link="36d5ff" fontsize="large" hspace=0 vspace=0>
|
|
<table cellspacing=0 cellpadding=0>
|
|
<tr><td width=104 height=74 valign=middle align=center bgcolor="3B3A4D">
|
|
<img src="${minisrv_config.config.service_logo}" width=86 height=64><td width=20 valign=top align=left bgcolor="3B3A4D">
|
|
<img src="${service_name}:/ROMCache/Spacer.gif"
|
|
width=1 height=1>
|
|
<td colspan=10 width=436 valign=middle align=left bgcolor="3B3A4D">
|
|
<font color="D6DFD0" size="+2">
|
|
<blackface>
|
|
<shadow>
|
|
<img src="${service_name}:/ROMCache/Spacer.gif"
|
|
width=1 height=4>
|
|
<br>
|
|
Please Call
|
|
</shadow>
|
|
</blackface>
|
|
</font>
|
|
<tr>
|
|
<td colspan=12 width=560 height=10 valign=top align=left>
|
|
<img src="file://ROM/Cache/Shadow.gif" width=560 height=6>
|
|
<tr>
|
|
<td width=104 height=10 valign=top align=left>
|
|
<td width=20 valign=top align=left>
|
|
<td width=67 valign=top align=left>
|
|
<td width=20 valign=top align=left>
|
|
<td width=67 valign=top align=left>
|
|
<td width=20 valign=top align=left>
|
|
<td width=67 valign=top align=left>
|
|
<td width=20 valign=top align=left>
|
|
<td width=67 valign=top align=left>
|
|
<td width=20 valign=top align=left>
|
|
<td width=68 valign=top align=left>
|
|
<td width=20 valign=top align=left>
|
|
<tr>
|
|
<td width=104 valign=middle align=center>
|
|
<td width=20 valign=middle align=center>
|
|
<td colspan=9 width=100 height=258 valign=top align=left>
|
|
<font size=+1>
|
|
Your Internet terminal needs to be repaired
|
|
or replaced before you can connect to WebTV.
|
|
<br><br>
|
|
`;
|
|
switch (wtvshared.getManufacturer(session_data.ssid, true)) {
|
|
case "10":
|
|
case "50":
|
|
data += `Call Philips customer service at 1-888-813-7069.`;
|
|
break;
|
|
case "40":
|
|
data += `Call Mitsubishi customer service at 1-800-332-2119`;
|
|
break;
|
|
case "70":
|
|
data += `Call Samsung customer service at 1-800-726-7864.`;
|
|
break;
|
|
case "90":
|
|
data += `Call RCA/Thomson customer service at 1-800-722-9599.`;
|
|
break;
|
|
case "AE":
|
|
data += `Contact zefie or MattMan on Discord (zefie or mattman69)`
|
|
break;
|
|
default:
|
|
data += `Contact the manufacturer's customer service department.`
|
|
break;
|
|
}
|
|
|
|
data += `
|
|
<tr>
|
|
<td colspan=99 abswidth=436 absheight=2 bgcolor=2B2B2B> <img src="${service_name}:/ROMCache/Spacer.gif" width=1 height=1> <tr><td absheight=1>
|
|
<tr>
|
|
<td colspan=99 abswidth=436 absheight=2 bgcolor=0D0D0D> <img src="${service_name}:/ROMCache/Spacer.gif" width=1 height=1> <tr><td height=7>
|
|
<tr>
|
|
<td width=104 valign=middle align=center> <td width=20 valign=middle align=center> <td colspan=9 width=416 valign=top align=left> <table cellspacing=0 cellpadding=0>
|
|
<tr>
|
|
<td width=208 valign=top align=right><td width=20> <td width=250 valign=top align=right>
|
|
<form action="wtv-head-waiter:/ValidateLogin?initial_login=true">
|
|
<FONT COLOR="#E7CE4A" SIZE=-1><input type="Submit" value="Continue" BORDERIMAGE="file://ROM/Borders/ButtonBorder2.bif" usestyle selected>
|
|
<input type="Submit" value="Power Off" BORDERIMAGE="file://ROM/Borders/ButtonBorder2.bif" usestyle onclick="location.href='client:poweroff'"></font>
|
|
<input type="Hidden" name="version" value=""> </form>
|
|
</table>
|
|
</BODY>
|
|
</html>`; |