-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
36 lines (26 loc) · 959 Bytes
/
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
<!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="/css/signup.css">
<title>마이 엔딩 크레딧</title>
</head>
<body>
<div class="signup-container">
<h1>회원가입</h1>
<form id="form">
<label for="id">아이디</label>
<input type="text" id="id" placeholder="ID">
<label for="id">비밀번호</label>
<input type="password" id="password" placeholder="password">
<label for="id">이름</label>
<input type="text" id="name" placeholder="이름">
<label for="id">생년월일</label>
<input type="date" id="birthday">
<button id="signup">가입하기</button>
</form>
</div>
</body>
</html>