-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsign-up.html
34 lines (31 loc) · 1.06 KB
/
sign-up.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="global.css">
<link rel="stylesheet" href="sign-up.css">
<title>sign-up</title>
</head>
<body>
<img class="logo" src="logo_black.png" alt="logo" />
<form class="sign_up_form">
<input type="text" name="닉네임" placeholder="닉네임" />
<input type="text" name="아이디" placeholder="아이디" />
<input type="text" name="비밀번호" placeholder="비밀번호" />
<input type="text" name="비밀번호 확인" placeholder="비밀번호 확인" />
<button>회원가입</button>
</form>
<section class="login_section">
<div class="already_signed_up">이미 회원이신가요?</div>
<a href="login.html">
<button class="login_button">로그인하기</button>
</a>
</section>
<!-- footer -->
<footer>
<div class="copyright">2022 copyright 어?이게왜되조</div>
</footer>
</body>
</html>