-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
124 lines (119 loc) · 3.69 KB
/
signup.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!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="icon" href="images/logo/favicon.ico" />
<link
rel="stylesheet"
as="style"
crossorigin
href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard.min.css"
/>
<link rel="stylesheet" href="styles/global.css" />
<link rel="stylesheet" href="styles/auth.css" />
</head>
<body>
<main class="auth-container">
<div class="logo-home-button-wrapper">
<a href="/"
><img src="images/logo/logo.svg" alt="판다마켓 홈" width="396"
/></a>
</div>
<form method="post">
<div class="input-item">
<label for="email">이메일</label>
<input
id="email"
name="email"
type="email"
placeholder="이메일을 입력해 주세요"
/>
</div>
<div class="input-item">
<label for="nickname">닉네임</label>
<input
id="nickname"
name="nickname"
type="text"
placeholder="닉네임을 입력해 주세요"
/>
</div>
<div class="input-item">
<label for="password">비밀번호</label>
<div class="input-wrapper">
<input
id="password"
name="password"
type="password"
placeholder="비밀번호를 입력해 주세요"
/>
<button
type="button"
class="password-toggle-button"
aria-label="비밀번호 보기"
>
<img
src="images/icons/eye-invisible.svg"
alt="비밀번호 숨김 상태 아이콘"
/>
</button>
</div>
</div>
<div class="input-item">
<label for="passwordConfirmation">비밀번호 확인</label>
<div class="input-wrapper">
<input
id="passwordConfirmation"
name="passwordConfirmation"
type="password"
placeholder="비밀번호를 다시 한 번 입력해 주세요"
/>
<button
type="button"
class="password-toggle-button"
aria-label="비밀번호 보기"
>
<img
src="images/icons/eye-invisible.svg"
alt="비밀번호 숨김 상태 아이콘"
/>
</button>
</div>
</div>
<button type="submit" class="button pill-button full-width">
회원가입
</button>
</form>
<div class="social-login-container">
<h3>간편 로그인하기</h3>
<div class="social-login-buttons-container">
<a
href="https://www.google.com/"
target="_blank"
rel="noopener noreferrer"
aria-label="구글 로그인"
><img
src="images/social/google-logo.png"
alt="구글 로그인"
width="42"
/></a>
<a
href="https://www.kakaocorp.com/page/"
target="_blank"
rel="noopener noreferrer"
aria-label="카카오톡 로그인"
><img
src="images/social/kakao-logo.png"
alt="카카오톡 로그인"
width="42"
/></a>
</div>
</div>
<div class="auth-switch">
이미 회원이신가요? <a href="login.html">로그인</a>
</div>
</main>
</body>
</html>