For security reasons, you might want to clear the login/password fields and/or reset the green ticks displayed at the right of these fields once the user clicked on the “Log on” button.

For RDPlus 7.30 and newer versions: this feature is included in the Webmaster Tookit program, in the “Preferences” tab, with the checkbox “Remember last login”. Uncheck it in order to publish Web Access pages which will not keep the last typed login.

For RDPlus 7.20 and older versions, please read the following instructions:

In order to do it, you will have to modify your Web Access page:

  • Open the Web Access page HTML files (usually “index.html” and “template.html” in “C:\Program Files(x86)\RDPlus\Clients\www\”) with a text editor (such as Notepad++)
  • Find this line:

                <input disabled=”disabled” value=”Log on” type=”button”>

  • Replace it by this line:

                <input disabled=”disabled” value=”Log on” type=”button”>

You will also have to modify a JavaScript file:

  • Open “C:\Program Files(x86)\RDPlus\Clients\www\software\common.js” with a text editor (such as Notepad++)
  • Find these lines: 

                        }

                        cplogon();

                }

  • Replace them by these lines: 

                        }

                        cplogon();

                        document.cookie = ‘Login_Editbox1=; expires=Thu, 01 Jan 1970 00:00:01 GMT;’; window.location.reload();

}

Go back to your browser and reload the page by pressing “Ctrl” and “F5” at the same, in order to clear your browser’s cache.