<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>회원가입</title>
<link rel="stylesheet" href="/static/common.css" />
</head>
<body>
<h2>회원가입</h2>
<form method="post">
<input name="userid" placeholder="아이디" required />
<br />
<input name="pwd" type="password" placeholder="비밀번호" required />
<br />
<input name="name" placeholder="이름" required />
<br />
<input name="email" type="email" placeholder="이메일" required />
<br />
<button type="submit">가입</button>
</form>
</body>
</html>