forked from SMU-LIKELION-HACKATHON-2TEAM/FrontEnd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconsumerSignup.html
75 lines (68 loc) · 2.13 KB
/
consumerSignup.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
65
66
67
68
69
70
71
72
73
74
75
<!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/consumer-signup.css" />
<link rel="icon" href="img/logo.png" />
</head>
<body>
<section class="box">
<div class="consumSignup-main">
<img src="img/consumer.png" >
<pre>소비자 회원가입</pre>
</div>
<div class="login-container">
<div class="login">
<pre>이미 계정이 있나요?</pre>
<a href="login.html">로그인</a>
</div>
</div>
<form class="consumSignup-container">
<h4>아이디</h4>
<input
class="input-info"
type="text"
name="id"
placeholder="아이디 입력*"
/>
<br />
<div class="error">
이미 존재하는 아이디입니다.
</div>
<h4>비밀번호</h4>
<input
class="input-info"
type="text"
name="password"
placeholder="비밀번호 입력*"
/>
<br />
<h4>비밀번호 재입력</h4>
<input
class="input-info"
type="text"
name="password-confirm"
placeholder="비밀번호 재입력*"
/>
<br />
<div class="error">
비밀번호가 일치하지 않습니다.
</div>
<h4>이메일</h4>
<input
class="input-info"
type="text"
name="password-confirm"
placeholder="이메일 입력*"
/>
<br />
<div class="error">
올바른 이메일 형식을 입력해 주세요.
</div>
<button type='button' class="signup-btn" href="#">회원가입</button>
</form>
</section>
</body>
</html>