forked from yun0329/FrontEnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignupOption.html
43 lines (34 loc) · 1.28 KB
/
signupOption.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>회원가입 옵션</title>
<link rel="stylesheet" href="css/signup-option.css" />
<link rel="icon" href="img/logo.png" />
</head>
<body>
<section class="box">
<img class="logo" src="img/logo1.png" />
<img class="logo2" src="img/logo2.png">
<div class="signup-main">
<img
src="img/signup.png"
class="signup-img"
>
<h1 style="margin: 8% 0 0 3%;">회원가입</h1>
</div>
<div class="option-container">
<div class="option-box">
<img src="img/consumer.png" class="consumer-img">
<h2>소비자 가입</h2>
<button type='button' class="signup-btn" onclick ="location.href='../html/consumer-signup.html'">회원가입</button>
</div>
<div class="option-box">
<img src="img/owner.png" class="owner-img">
<h2>소상공인 가입</h2>
<button type='button' class="signup-btn" onclick ="location.href='../html/owner-signup.html'">회원가입</button>
</div>
</div>
</section>
</body>