VELTRON.NET/TDKHome/more/email.html
MattTheTekie dcb3d66bc5 Add TDKHome files
Add TDKHome files
2023-09-15 13:04:40 -04:00

22 lines
No EOL
792 B
HTML

<html>
<head>
<title>DSi Email Reader</title>
<meta name="viewport" content="width=240">
<style>body { margin:0px; }</style>
<script>
function funct(){
var email=document.getElementById('email').value;
var pass=document.getElementById('pass').value;
document.body.innerHTML = "<iframe src='http://mail2web.com/pda/cgi-bin/intellilogin.asp?EMAILADDRESS="+email+"&PASSWORD="+pass+"' width=240 height=176 scrolling='auto' style='border:0px solid white; wordwrap:normal;'>";
}
</script>
</head>
<body>
<font size=2><center>
Login to your email account here.<br>We do <u>NOT</u> store any passwords.<br><br><br>
Email Address: <input type=text size=15 id=email><br>
Password: <input type=password size=19 id=pass>
<input type=button value=login onclick="funct();">
</center></font>
</body>
</html>