-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjoin.html
46 lines (46 loc) · 1.57 KB
/
join.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="join.css" />
<title>회원가입</title>
</head>
<body>
<header>
<div class="header">
<div class="logo">
<a href="main.html"><img src="h_logo.png" alt="h_logo" /></a>
</div>
</div>
</header>
<section class="join_form">
<h1 class="join">회원가입</h1>
<form class="join_area" method="post">
</form>
<div class="id_pw_area">
<div class="id_pw">
<input type="text" name="id" id="accountId" required />
<label for="accountId">아이디</label>
<button type="button" id="checkbtn">중복 확인</button>
</div>
<div class="id_pw">
<input type="password" name="password" id="password" required />
<label for="password">비밀번호</label>
</div>
<div class="id_pw">
<input type="password" name="password_confirm" id="password_confirm" required />
<label for="password_confirm">비밀번호 확인</label>
</div>
</div>
</form>
<div class="join_info">
*영어와 숫자, 특수문자를 포함하여 6자 이상 20자 이하로 작성해주세요.
</div>
<div class="btn_area">
<button class="join_btn" type="submit" id="join_btn">가입하기</button>
</div>
</section>
<script type="module" src="join.js"></script>
</body>
</html>