Is there a possibility to open the HTML file and go directly into my page?
Now it uses input fields like this which are hidden:
<input type="hidden" name="username" value="The username in used here" />
<input type="hidden" name="password" value="The Password is written here" />
It would be nice if someone knows how to make a sort of a executeble out of it, so I only have an icon on my desktop which I can use to login.
This is the file in total which I use now:
<html>
<head>
<link rel="stylesheet" href="http://www.anniebeheercontract.nl/v201/themes/crystal/style.css">
<title>
E-Mail en Agenda</title></head><body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" ><script language="javascript" type="text/javascript" src="http://www.anniebeheercontract.nl/v2/javascript/common.js">
</script>
<script type="text/javascript" language="javascript">
function hidestatus(){
window.status='Group-Office 1.13'
return true
}
if (document.layers)
{
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)
}
document.onmouseover=hidestatus
document.onmouseout=hidestatus
</script>
<!--Einde header-->
<form method="post" action="http://www.annienetwerk.nl/live/" name="login">
<table cellspacing="0" cellpadding="15" width="100%">
<tr>
<td align="center">
<input type="hidden" name="table_tabindex" value="0" /><table border="0" cellpadding="0" cellspacing="0" class="TableBorder" width="400"><tr><td valign="top"><table border="0" cellpadding="1" cellspacing="1" width="100%"><tr><td colspan="99" class="TableHead">E-Mail en Agenda</td></tr><tr><td colspan="99" cellpadding="10" cellspacing="0" class="TableInside" height="300" valign="top" width="100%"><input type="hidden" name="task" value="login" />
<br />
<br />
<table cellspacing="2" border="0" cellpadding="1" valign="center" align="center">
<tr>
<td colspan="2">
<h3>Klik op de knop om e-mail en agenda te starten</h3>
<br />
</td>
</tr>
<tr>
<td align="right" nowrap>
</td>
<td>
<input type="hidden" name="username" value="The username in used here" />
<input type="hidden" name="password" value="The Password is written here" />
<input type="hidden" name="remind" value="true" />
</td>
</tr>
<tr>
<td colspan="2" align="center">
<br />
<input type="button" class="button" style="width: 100px;" value="starten" onclick="java script:document.forms[0].submit();" onmouseover="java script:this.className='button_mo';" onmouseout="java script:this.className='button';" /> </td>
</tr>
</table>
</td></tr></table></td></tr></table> </td>
</tr>
<tr>
</table>
</form>
<!--Start Footer-->
</body>
</html>

