join.html 796 Bytes
<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Mukho</title>
</head>
<body>
    <h2>Hello. It's me mukho.</h2>

    <a href="http://localhost:3000/">main</a>
    <a href="http://localhost:3000/about">about</a>
    <a href="http://localhost:3000/info">info</a>
    
    <h3>회원가입<br></h3>

    <form action="/join" method="post">
        ID : <input type="text" name="ID" required minlength='1' maxlength='20'><br/>
        password : <input type="password" name="password" required minlength='1' maxlength='20'><br/>
        password confirmation : <input type="password" name="pw_com" required minlength='1' maxlength='20'><br/>
    <input type="submit">
    </form>
</body>
</html>