パスワード ボックス内にフォーム検証メッセージを表示する方法はありますか? フォームを送信すると、ボックス内にエラーメッセージが表示されないため..テキストボックスではないことはわかっていますが、これを行う方法はありますか? ここに私が使用しているスクリプトがあります..
<form action="mail.php" id="theform" name="theform" method="post">
<p><label for="name">Name</label><br />
<input id="name" type="text" value="" name="name" />
</p>
<p><label for="email">E-mail</label><br />
<input id="email" type="text" value="" name="email" />
</p>
<p><label for="message">Password</label><br />
<input id="password" type="password" rows="7" cols="30" name="password"></input>
</p>
<p><input class="submit" type="submit" name="submit" value="Submit Form" />
</p>
<p id="error">There were errors on the form, please make sure all fields are fill out correctly.</p>
</form>