-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCreate_Account.html
66 lines (60 loc) · 1.87 KB
/
Create_Account.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>판다마켓-회원가입</title>
<link rel="stylesheet" type="text/css" href="Create_Account.css">
</head>
<body>
<section>
<article class="logo">
<a href="Main.html" target="_self"><img id="logo" src="log_in\login_logo.jpg"></a>
</article>
<article class="logIn_webForm">
<form>
<table>
<label>
<tr>
<p>이메일</p>
</tr>
<tr>
<input type="text" placeholder="아이디를 입력해주세요.">
</tr>
<tr>
<p>닉네임</p>
</tr>
<tr>
<input type="text" placeholder="닉네임을 입력해주세요.">
</tr>
<tr>
<p>비밀번호</p>
</tr>
<tr>
<input type="password" placeholder="비밀번호를 입력해주세요.">
</tr>
<tr>
<p>비밀번호 확인</p>
</tr>
<tr>
<input type="password" placeholder="비밀번호를 다시 한 번 입력해주세요.">
</tr>
</label>
<tr>
<button type="submit">회원가입</button>
</tr>
</table>
</form>
</article>
<nav>
<ul>
<li id="link"><a href="#">간편 로그인하기</a></li>
<li id="diff_web_logIn"><a href="https://www.google.com/" target="_self"><img id="Google"
src="log_in/google_logo.jpg" alt="Google Login"><a></li>
<li id="diff_web_logIn"><a href="https://www.kakaocorp.com/page/" target="_self"><img id="Kakao"
src="log_in/kakao_logo.jpg" alt="Kakao Login"><a></li>
</ul>
<p>이미 회원이신가요? <a href="log_in.html" target="_self">로그인</a></p>
</nav>
</section>
</body>
</html>