我不熟悉编码,但我已经在我的网站上编写了以下用户名和密码验证。
<table>
<form name="login">
<tr><th colspan="2">Login</th></tr>
<tr><td>Username:</td>
<td><input type="text" name="username"/></td></tr>
<tr><td>Password:</td>
<td><input type="password" name="password"/></td></tr>
<td colspan="2"><center><input type="button" onclick="check(this.form)" value="Submit"/>
<input type="reset" value="Reset"/></center></td>
</form>
</table>
<script>
function check(form)
{
if(form.username.value == "user1" && form.password.value == "user1")
{
location="index.html"
}
else
{
alert("Incorrect credentials.")
}
}
</script>
是否可以为此添加JWT身份验证?
答案 0 :(得分:1)