로그인 후 어떻게 방향을 바꿉니까 (간단한javascript)

1891 단어
코드에 대한 도움이 필요합니다.기본적으로 나는 로그인한 후 방향을 바꿀 수 없다.
그래서 도움이 좀 필요해요.
저는 간단한 html과javascript를 사용했어요.
html 여기, js 닫기
(index.html)
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="login.css">
    <title>Login</title>
    <script src="login.js"></script>
</head>

<body>
     <DIV action="login.html" class="container">
         <form  method="POST" class="login-form">
            <h1 class="login-heading">LOGIN FORM</h1>
             <input type="text" placeholder="User Name" id="login-username">
             <br><br>
             <input type="password" placeholder="Password" id="login-password">
             <br><br><br>
             <input type="submit" value="Login" id="login-submit" onclick="validate()">
         </form>
     </DIV>

</body>
</html>
/*****************/
(script.js)
function validate(){
    var username=document.getElementById('login-username').value;
    var passowrd=document.getElementById('login-password').value;

    if (username === "daksh" && passowrd === 'daksh'){
        alert('You have sucessfully logged in');
        location.href('https://google.com')

    } else{
        alert('Wrong username or password');
    }
}

좋은 웹페이지 즐겨찾기