in reply to Suggestions on how to show an "invalid email address" box in the login page

This is a Javascript problem. The OP needs to put the code into an event handler of some kind, usally "onchange" for that sort of thing, so it runs when you want it to run and not right away after it got parsed. Something along the lines of
<form method="post" action="cgi-bin/login.cgi"> <input type="email" name="email_address" required onchange="ch +eckEmail()"> </form> <script> function checkEmail() { var xmlhttp = new XMLHttpRequest(); ... } </script>


holli

You can lead your users to water, but alas, you cannot drown them.
  • Comment on Re: Suggestions on how to show an "invalid email address" box in the login page
  • Download Code