在常规电子邮件/密码表单的场景中,提交的表单向服务器发出 POST 请求以验证客户端凭据。
如何告诉浏览器认证是否成功?即,如何告诉浏览器是否记住电子邮件/密码组合。
这是表单布局:
<form action="" method="post">
<fieldset>
<legend>Sign in</legend>
<label>
<span>Email</span>
<input type="text" name="ay[email]">
</label>
<label>
<span>Password</span>
<input type="password" name="ay[password]">
</label>
<input type="submit" value="Sign in">
</fieldset>
</form>
该过程不涉及 JavaScript。