forked from LOcal-COnnect/Loco-FE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstoreJoin.html
64 lines (63 loc) · 2.57 KB
/
storeJoin.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>판매자 회원가입</title>
<link rel="stylesheet" href="css/index.css" />
<link rel="stylesheet" href="css/member.css" />
</head>
<body>
<div class="container">
<div class="storeJoinTitle">
<img
src="img/backPage.svg"
onclick="location.href='selectJoin.html'"
/>
<h3>회원가입</h3>
</div>
<div class="storeJoinBody">
<input id="storeId" type="text" placeholder="아이디" />
<input id="storePw" type="password" placeholder="비밀번호" />
<input id="storeEmail" type="text" placeholder="이메일" />
<input id="storeNum" type="text" placeholder="가게전화번호" />
<label class="selectAddrInput" onclick="searchAddress();">
<input
type="text"
id="roadAddress"
placeholder="지역설정"
readonly
/>
<img src="img/selectCity.svg" />
</label>
<input id="addressDetail" type="text" placeholder="상세주소" />
<input id="storeSellerName" type="text" placeholder="사장님명" />
<input id="storeName" type="text" placeholder="가게명" />
<input
id="sellerNumber"
type="text"
placeholder="전화번호 (선택)"
/>
<label class="storeNumCheckInput">
<input
id="businessNum"
type="text"
placeholder="사업자 번호"
/>
<button onclick="checkBusinessNum();">인증하기</button>
</label>
<button
type="button"
class="storeJoinBt"
id="joinButton"
onclick="storeJoin();"
>
LOCO 회원가입
</button>
</div>
</div>
<script src="//t1.daumcdn.net/mapjsapi/bundle/postcode/prod/postcode.v2.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/searchAddress.js"></script>
<script src="js/member.js"></script>
</body>
</html>