forked from 2023-CodewithDuksung/2023-CodeWithDS-03
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
83 lines (72 loc) · 2.54 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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./signup.css">
<script src="signup.js"></script>
<title>회원가입 페이지</title>
<style>
html, body {
height: 100%;
margin: 0;
}
.page-wrap {
display: flex;
flex-direction: column;
min-height: 100%;
}
.content {
flex-grow: 1;
}
.footer {
background-color: #f1f1f1;
padding: 20px;
text-align: center;
position: relative;
}
</style>
</head>
<body style = "margin:0px">
<div class="page-wrap">
<div class="header">
<div>
<a href="./home.html">Home</a>
<a href="./board.html">Board</a>
<a href="./chat.html">Chat</a>
<a href="./myPage.html">My Page</a>
</div>
<!-- n -->
</div>
<div class="page">
<div class="title">
회원가입
</div>
<div class="contentWrap">
<div class="inputTitle">이름</div>
<div class="inputWrap">
<input type="text" id="nameInput" class="input" placeholder="이름을 입력해 주세요.">
</div>
<div style="margin-top: 13px;" class="inputTitle">아이디</div>
<div class="inputWrap">
<input type="text" id="idInput" class="input" placeholder="아이디를 입력해 주세요.">
</div>
<div style="margin-top: 13px;" class="inputTitle">비밀번호</div>
<div class="inputWrap">
<input type="password" id="passwordInput" class="input" placeholder="비밀번호를 입력해 주세요.">
</div>
<div style="margin-top: 13px;" class="inputTitle">비밀번호 확인</div>
<div class="inputWrap">
<input type="password" id="confirmPasswordInput" class="input" placeholder="비밀번호를 다시 입력해 주세요.">
</div>
<div class="signUp">
<button id="signUpButton" class="bottomButton" disabled onclick="completeSignUp()">가입하기</button>
</div>
</div>
</div>
<footer id="footer">
CodewithDs
</footer>
</div>
</body>
</html>