设定账户跟密码怎么弄。
在这个基础上又如何添加 登录跟注册这两个内容。
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Title</title>
<script type="text/javascript">
function regist() {
window.open('Untitled-2.html');
window.location.href = 'Untitled-2.html';
}
</script>
</head>
<body>
<form>
<label for="UserName">输入您的账号</label>
<input type="text" id="UserName" placeholder="Enter Your Name">
<br />
<label for="Password">输入您的密码</label>
<input type="password" id="Password" placeholder="Enter Password">
<br />
<input type="submit" value="登陆" name="LoginBtn" />
<input type="button" value="注册" name="SigninBtn" onclick="regist()">
</form>
</body>
</html>
input或者botton标签,登录和注册加超链接就可以了