-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3-1.html
More file actions
57 lines (53 loc) · 1.55 KB
/
3-1.html
File metadata and controls
57 lines (53 loc) · 1.55 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>회원가입</title>
</head>
<body>
<div class="sign">
<h1>
회원가입
</h1>
<hr>
<table>
<tr>
<td>이름</td>
<td><input type="text" name="이름"></td>
</tr>
<tr>
<td>아이디</td>
<td><input type="text" name="아이디"></td>
</tr>
<tr>
<td>비밀번호</td>
<td><input type="text" name="비밀번호"></td>
</tr>
<tr>
<td>비밀번호 확인</td>
<td><input type="text" name="비밀번호 확인"></td>
</tr>
<tr>
<td>전화번호</td>
<td>
<select id="tel">
<option>010</option>
<option>031</option>
<option>032</option>
</select>
-
<input type="text" name="전화번호">
-
<input type="text" name="전화번호">
</td>
</tr>
<tr>
<td colspan="2">
<input class="button" type="button" value="취소" />
<input class="button" type="button" value="회원가입" />
</td>
</tr>
</table>
</div>
</body>
</html>