Hi !
I'd like to authenticate NetStorage via a form in a web page to include it
in my extranet.
I already do this with NetMail :
<form name="form1" method="post" action="https://[Mail-Server]/f"
target="_blank">
<input name="Username" id="Username" type="hidden" value="<? echo
$_SERVER[PHP_AUTH_USER]; ?>">
<input name="password" id="password" type="hidden" value="<? echo
$_SERVER[PHP_AUTH_PW]; ?>">
<input name="Logon" id="Logon" value="Se connecter" type="submit">
</form>
Is there a way to do this with netStorage to ?
Thanks