join.ejs
942 Bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Mukho</title> <!--register ejs template-->
</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' placeholder="ID"><br/>
password : <input type="password" name="password" required minlength='1' maxlength='20' placeholder="Password"><br/>
password confirmation : <input type="password" name="pw_com" required minlength='1' maxlength='20' placeholder="Confirm"><br/>
<input type="submit">
<section class="messages" style="color:crimson;"> <%= message %> </section>
</body>
</html>