-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
29 lines (29 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>회원가입 - Instagram</title>
<link href="signUp.css" rel="stylesheet" type="text/css" />
<link href="background.css" rel="stylesheet" type="text/css" />
<link rel="icon" href="img/icon.png">
</head>
<body>
<div class="signUp_container">
<img class="instagramText" src="img/logo_text.png" alt="instagramText">
<h2 class="joinLetter">친구들의 사진과 동영상을 보려면 가입하세요.</h2>
<hr class="line"> <!--수평선 -->
<input type="text" class="userSignUp" placeholder="휴대폰 번호 또는 이메일 주소">
<input type="text" class="userSignUp" placeholder="성명">
<input type="text" class="userSignUp" placeholder="사용자 이름">
<input type="password" class="userSignUp" placeholder="비밀번호">
<button id="signUpButton" disabled>가입</button>
</div>
<div>
<footer class="joinInsta">
<p class="join">계정이 있으신가요?
<button class="joinBtn">로그인</button>
</p>
</footer>
</div>
</body>
</html>