main.html 1.04 KB
<!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">
    <title>Main Page</title>

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
    Main Page
    <div>
        <input type="button" value = "squart start" id = "moveSquart" onclick="moveSquartPage()"/>
    </div>

    <script type="text/javascript" src="./main.js"></script>
    <div>
        <input id = "name" type = "text" placeholder="이름">
        <input id = "password" type = "text" placeholder="비밀번호">
        <button type="submit" id = "button">
            로그인
        </button>
    </div>
    <div>
        <input id = "register_name" type = "text" placeholder="이름">
        <input id = "register_password" type = "text" placeholder = "비밀번호">
        <button type = "submit" id = "register_button">
            회원가입
        </button>
    </div>
</body>
</html>