in reply to Suggestions on how to show an "invalid email address" box in the login page
<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>
|
|---|