-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3-3.html
More file actions
82 lines (79 loc) · 2.29 KB
/
3-3.html
File metadata and controls
82 lines (79 loc) · 2.29 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>
<head>
<meta charset="utf-8">
<title>회원가입</title>
<script src="https://code.jquery.com/jquery-latest.min.js"></script>
<style>
.sign {
width: 600px;
border: 1px solid black;
padding: 50px;
position: relative;
top: 70px;
margin: 0 auto;
}
h1 {
text-align: center;
}
table {
margin: 0 auto;
}
td {
padding: 15px;
}
</style>
</head>
<body>
<form class="sign" method="POST">
<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">
<center>
<input class="button" type="button" value="취소" />
<input class="button" type="button" value="회원가입" />
</center>
</td>
</tr>
</table>
</form>
<script>
$('input').css('height','25px').css('border','1px solid #cecece')
$('.button').css('width','100px').css('height','50px').css('border','1px solid #cecece')
</script>
</body>
</html>