-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmember_input.jsp
65 lines (63 loc) · 1.78 KB
/
member_input.jsp
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
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR">
<title>회원가입</title>
</head>
<body>
<script language = "JavaScript">
function Check_id()
{
browsing_window = window.open("checkid.jsp?userid="+form1.userid.value, "_idcheck","height=100,width=300, menubar=no,directories=no,resizable=no,status=no,scrollbars=yes");
browsing_window.focus();
}
</script>
<center>
<H2>회원가입 </H2>
<HR>
</center>
<form name=form1 method=post action=member_output.jsp>
<table cellpadding=5 cellspacing=0 border="1" align="center">
<tr>
<td bgcolor="#99CC00">아이디</td>
<td>
<input type="text" name="userid" size="20">
<input type="button" OnClick='Check_id()' value='ID 중복검사'>
</td>
</tr>
<tr>
<td bgcolor="#99CC00">비밀번호</td>
<td><input type="text" name="passwd" size="20"></td>
</tr>
<tr>
<td bgcolor="#99CC00">이름</td>
<td><input type="text" name="name" size="20"></td>
</tr>
<tr>
<td bgcolor="#99CC00">주민등록번호</td>
<td>
<input type="text" name="juminnum1" size="6">
</tr>
<tr>
<td bgcolor="#99CC00">전화번호 </td>
<td><input type="text" name="phone" size="20"></td>
</tr>
<tr>
<td bgcolor="#99CC00">주소</td>
<td><input type="text" name="adress" size="20"></td>
</tr>
<tr>
<td colspan=2 align=center>
<input type="submit" name="submit_join" value="회원가입">
<input type="reset" name="reset" value="리셋">
</td>
</tr>
</table>
</form>
<center>
<a href="login_form.html">로그인 </a>
</center>
</body>
</html>