-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
68 lines (68 loc) · 1.98 KB
/
signup.html
File metadata and controls
68 lines (68 loc) · 1.98 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/signup.css" />
<title>회원가입 - 에브리타임</title>
</head>
<body>
<form class="signup-pg" method="post" action="">
<section>
<h2>에브리타임 회원가입</h2>
<p>
에브리타임 계정으로
<strong>캠퍼스픽, 에브리타임</strong> 등<br />다양한 대학생 서비스를
모두 이용하실 수 있습니다.
</p>
<div>
<label for="username">이름</label>
<input
type="text"
name="username"
id="username"
placeholder="이름을 입력하세요."
/>
</div>
<div>
<label for="nickname">닉네임</label>
<input
type="text"
name="nickname"
id="nickname"
placeholder="닉네임을 입력하세요."
/>
</div>
<div>
<label for="email">이메일</label>
<input
type="email"
name="email"
id="email"
placeholder="이메일을 입력하세요."
/>
</div>
<div>
<label for="password">비밀번호</label>
<input
type="password"
name="password"
id="password"
placeholder="숫자/문자 조합, 최소 8자 이상"
/>
</div>
<div>
<label for="re-password">비밀번호 재입력</label>
<input
type="password"
name="re-password"
id="re-password"
placeholder="비밀번호를 재입력하세요."
/>
</div>
<input type="submit" class="input-sub" id="bnt" value="회원가입" disabled />
</section>
</form>
<script src="./js/signup.js"></script>
</body>
</html>