-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
40 lines (35 loc) · 1.38 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css2?family=Song+Myung&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style_signup.css">
</head>
<body>
<h1>회원 가입</h1>
<img src="img/meditate.png">
<section class="login-form">
<form action="">
<div class="int-area" style="padding: 0px 0px 30px 0px;">
<input type="text" name="name" id="name"
autocomplete="off" required>
<label for="name">이름을 입력하세요</label>
</div>
<div class="int-area" style="padding: 0px 0px 30px 0px;">
<input type="text" name="id" id="id"
autocomplete="off" required>
<label for="id">아이디를 입력하세요</label>
</div>
<div class="int-area" style="padding: 0px 0px 30px 0px;">
<input type="password" name="pw" id="pw"
autocomplete="off" required>
<label for="pw">비밀번호를 입력하세요</label>
</div>
<div class="btn-area" style="padding: 10px 0px 0px 0px;">
<button type="submit">회원 가입 완료하기</button>
</div>
</form>
</section>
</body>
</html>