forked from LOcal-COnnect/Loco-FE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselectJoin.html
33 lines (33 loc) · 1.1 KB
/
selectJoin.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
<!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="selectTitle">
<img src="img/backPage.svg" class="backIcon" onClick="window.location.href='main.html'"/>
<img src="img/logo.svg" class="mainLogo" />
</div>
<div class="selectBody">
<div
class="selectStore"
onclick="location.href='storeJoin.html'"
>
<p>가게 사장님</p>
<img src="img/storeIcon.svg" />
</div>
<div
class="selectMember"
onclick="location.href='memberJoin.html'"
>
<p>LOCO 회원</p>
<img src="img/memberIcon.svg" />
</div>
</div>
</div>
</body>
</html>