-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
82 lines (76 loc) · 2.03 KB
/
signup.html
File metadata and controls
82 lines (76 loc) · 2.03 KB
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
<!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="../Board/style.css">
<style>
body {
font-family: '맑은 고딕', sans-serif;
background-color: #f4f6f8;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background-color: #fff;
border-radius: 10px;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
width: 400px;
padding: 20px;
}
.header {
color: #03C75A;
text-align: center;
}
.header h1 {
font-size: 24px;
margin: 0;
}
.signup-form {
margin-top: 20px;
}
.signup-form input[type="text"],
.signup-form input[type="password"],
.signup-form input[type="email"] {
width: 100%;
border: none;
padding: 15px 20px;
box-sizing: border-box;
border-radius: 5px;
margin-bottom: 20px;
font-size: 16px;
background-color: #f4f6f8;
}
.signup-form input[type="submit"] {
width: 100%;
background-color: #03C75A;
color: #fff;
border: none;
border-radius: 5px;
padding: 15px;
font-size: 16px;
cursor: pointer;
}
</style>
<title>회원가입</title>
</head>
<body>
<div class="container">
<div class="header">
<h1>회원가입</h1>
</div>
<form class="signup-form">
<input type="text" name="username" placeholder="사용자명" required>
<input type="password" name="password" placeholder="비밀번호" required>
<input type="password" name="confirm_password" placeholder="비밀번호 확인" required>
<input type="email" name="email" placeholder="이메일" required>
<input type="submit" value="가입하기">
</form>
</div>
</body>
</html>