<!DOCTYPE html>
<html lang="ko">
<head>
<title>화원가입</title>
<meta charset="UTF-8">
</head>
<body>
<form>
<table border="1">
<caption>회원가입</caption>
<thead>
<tr>
<th>이메일</th>
<td colspan="2"><input autofocus maxlength="50" placeholder="이메일" name="email" type="email"></td>
</tr>
<tr>
<th>비밀번호</th>
<td colspan="2"><input maxlength="100" placeholder="비밀번호" name="password" type="password"></td>
</th>
</tr>
<tr>
<th>비밀번호 확인</th>
<td colspan="2"><input maxlength="100" placeholder="비밀번호 재입력" name="passwordCheck" type="password"></td>
</tr>
<tr>
<th>닉네임</th>
<td colspan="2"><input maxlength="10" placeholder="닉네임" name="nickname" type="test"></td>
</tr>
<tr>
<th>통신사</th>
<td colspan="2">
<label><input name="telecom" type="radio">KT</label>
<label><input name="telecom" type="radio">SKT</label>
<label><input name="telecom" type="radio">LGU+</td></label>
</tr>
<tr>
<th>연락처</th>
<td colspan="2"><input maxlength="11" placeholder="연락처" name="contact" type="tel"></td>
</tr>
<tr>
<th rowspan="2">약관</th>
<td colspan="2">어쩌고 약관<br>
<label>
<input colspan="2" value="checkbox" type="checkbox">위 약관을 읽어보았고 동의합니다.
</label>
</td>
</tr>
</thead>
<tbody>
<tr>
<label>
<th colspan="3"><input type="submit" value="돌아가기">
<input type="reset" value="다시 입력">
<input type="submit" value="회원가입"></th>
</label>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
</form>
</body>
</html>