-
Notifications
You must be signed in to change notification settings - Fork 4
/
register.html
297 lines (247 loc) · 10.6 KB
/
register.html
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" th:href="@{/styles/contact.css}">
<link rel="stylesheet" type="text/css" th:href="@{/styles/contact_responsive.css}">
<script th:src="@{/plugins/marker_with_label/marker_with_label.js}"></script>
<script th:src="@{/js/contact.js}"></script>
<script src="//t1.daumcdn.net/mapjsapi/bundle/postcode/prod/postcode.v2.js"></script>
<script>
$(document).ready(function(){
var code = ""; // 이메일 인증번호 저장
var timer = null;
var check = true;
/* 회원가입 */
$('#register_btn').click(function(){
$('#register_form').attr({
'action' : '[[@{/user/registerimpl}]]',
'method' : 'post'
});
$('#register_form').submit();
});
/* 비밀번호 확인시 일치 여부 */
$('#pwd2').keyup(function(){
var pwd = $('#pwd').val();
var pwd2 = $('#pwd2').val();
if(pwd == pwd2) {
$('#pspan').text('비밀번호가 일치합니다. 회원가입을 진행해주세요.')
} else {
$('#pspan').text('비밀번호가 일치하지 않습니다.')
};
});
/* 아이디 중복 체크 */
$('#idcheck_btn').click(function(){
var id = $('#id').val();
$.ajax({
url : '[[@{/checkid}]]',
data : {'cid' : id},
success : function(result){
if(result == 't') {
$('#ispan').text('사용 가능한 ID 입니다.')
} else {
$('#ispan').text('다른 ID를 입력해주세요.')
}
}
});
});
/* 이메일 정규직 검증 */
function mailregexcheck() {
var regex = new RegExp('[a-z0-9]+@[a-z]+\.[a-z]{2,3}'); //정규식 작성
var email = document.register_form.email.value; // 사용자가 입력한 이메일
if(regex.test(email)) { // 정규식 테스트
$('#espan1').text('메일이 발송되었습니다. 인증번호를 입력해주세요');
return check=true;
} else {
$('#espan1').text('메일주소 형식을 다시 확인해서 입력해주세요');
return check=false;
}
}
/* 이메일 인증번호 보내기 */
$('#emailcheck_btn').click(function(){
mailregexcheck(); // 이메일 정규식 검증 - true
console.log(mailregexcheck());
var email = $('#email').val(); // 사용자가 입력한 이메일
if(check == true){
var count = 180;
timer = setInterval(function() {
minutes = parseInt(count / 60, 10);
seconds = parseInt(count % 60, 10);
document.getElementById("count").innerHTML = "유효시간 : " + minutes + "분" + seconds + "초";
--count;
if(count < 0) {
$('#emailconfirm').attr('disabled', true);
document.getElementById("count").innerHTML = "유효시간이 초과되었습니다.";
clearInterval(count);
}
}, 1000);
$.ajax({
type : 'get',
url : '[[@{/user/emailCheck}]]?email=' + email, // 컨트롤러로 사용자가 입력한 이메일을 보내줌
success : function (data) { // 컨트롤러의 data가 반환
$('#emailconfirm').attr('disabled', false);
code = data;
}
});
}
});
/* 인증번호 일치여부 검사 */
$('#codecheck_btn').click(function(){
var emailconfirm = document.register_form.emailconfirm.value; // 사용자가 입력한 인증번호 값
if(emailconfirm == code) {
$('#espan2').text('인증번호가 일치합니다');
$('#espan2').attr('class', 'correct');
var count = 0;
timer = setInterval(function() {
minutes = parseInt(count / 60, 10);
seconds = parseInt(count % 60, 10);
document.getElementById("count").innerHTML = "유효시간 : " + minutes + "분" + seconds + "초";
--count;
if(count < 0) {
$('#emailconfirm').attr('disabled', true);
document.getElementById("count").innerHTML = "회원가입을 마저 진행해주세요";
clearInterval(count);
}
}, 0);
} else {
$('#espan2').text('인증번호가 일치하지 않습니다. 다시 확인해주세요');
$('#espan2').attr('class', 'incorrect');
}
});
});
function sample6_execDaumPostcode() {
new daum.Postcode({
oncomplete: function(data) {
// 팝업에서 검색결과 항목을 클릭했을때 실행할 코드를 작성하는 부분.
// 각 주소의 노출 규칙에 따라 주소를 조합한다.
// 내려오는 변수가 값이 없는 경우엔 공백('')값을 가지므로, 이를 참고하여 분기 한다.
var addr = ''; // 주소 변수
var extraAddr = ''; // 참고항목 변수
//사용자가 선택한 주소 타입에 따라 해당 주소 값을 가져온다.
if (data.userSelectedType === 'R') { // 사용자가 도로명 주소를 선택했을 경우
addr = data.roadAddress;
} else { // 사용자가 지번 주소를 선택했을 경우(J)
addr = data.jibunAddress;
}
// 사용자가 선택한 주소가 도로명 타입일때 참고항목을 조합한다.
if(data.userSelectedType === 'R'){
// 법정동명이 있을 경우 추가한다. (법정리는 제외)
// 법정동의 경우 마지막 문자가 "동/로/가"로 끝난다.
if(data.bname !== '' && /[동|로|가]$/g.test(data.bname)){
extraAddr += data.bname;
}
// 건물명이 있고, 공동주택일 경우 추가한다.
if(data.buildingName !== '' && data.apartment === 'Y'){
extraAddr += (extraAddr !== '' ? ', ' + data.buildingName : data.buildingName);
}
// 표시할 참고항목이 있을 경우, 괄호까지 추가한 최종 문자열을 만든다.
if(extraAddr !== ''){
extraAddr = ' (' + extraAddr + ')';
}
// 조합된 참고항목을 해당 필드에 넣는다.
document.getElementById("sample6_extraAddress").value = extraAddr;
} else {
document.getElementById("sample6_extraAddress").value = '';
}
// 우편번호와 주소 정보를 해당 필드에 넣는다.
document.getElementById('sample6_postcode').value = data.zonecode;
document.getElementById("sample6_address").value = addr;
// 커서를 상세주소 필드로 이동한다.
document.getElementById("sample6_detailAddress").focus();
}
}).open();
}
function formcheck() {
var c = document.register_form;
if (c.userid.value == "") {
alert("ID를 입력해주세요");
c.userid.focus();
return false;
}
}
</script>
</head>
<!-- Home -->
<div class="home">
<div class="breadcrumbs_container">
<div class="container">
<div class="row">
<div class="col">
<div class="breadcrumbs">
<ul>
<li><a th:href="@{/}">Home</a></li>
<li>RESISTER</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Contact -->
<div class="contact">
<!-- Contact Info -->
<div class="contact_info_container">
<div class="container">
<div class="row">
<!-- Contact Form -->
<div class="col-lg-8">
<div class="contact_form">
<div class="contact_info_title">회원가입</div>
<form action="#" class="register_form" id = "register_form" name = "register_form">
<div>
<label for = "id" class="form_title">ID</label>
<div><input type="text" class="comment_input col-lg-5" id = "id" name = "userid">
<button id = "idcheck_btn" type="button" class="comment_button_regi trans_200">ID 중복 확인</button></div>
<span id = "ispan"></span>
</div>
<div>
<label for = "pwd" class="form_title">비밀번호</label>
<input type="password" class="comment_input" id = "pwd" name = "userpwd">
</div>
<div>
<label for = "pwd2" class="form_title">비밀번호 확인</label>
<input type="password" class="comment_input" id = "pwd2" name = "pwd2">
<span id = "pspan"></span>
</div>
<div>
<label for = "name" class="form_title">이름</label>
<input type="text" class="comment_input" id = "name" name = "username">
</div>
<div>
<label for = "phone" class="form_title">핸드폰 번호 (예: 010-0000-0000)</label>
<input type="text" class="comment_input" id = "phone" name = "usertel">
</div>
<div>
<label for = "email" class="form_title">이메일</label>
<div><input type="text" class="comment_input col-lg-5" id = "email" name = "useremail">
<button id = "emailcheck_btn" type="button" th:onclick = "mailregexcheck()" class="comment_button_mail trans_200">인증 메일 보내기</button></div>
<div><span id = "espan1"></span></div><div><span id = "count"></span></div>
<input type="text" class="comment_input col-lg-5" id = "emailconfirm" placeholder = "인증번호 6자리를 입력해주세요" disabled = "disabled" maxlength = "6">
<button id = "codecheck_btn" type="button" class="comment_button_mail trans_200">인증</button>
<div><span id = "espan2"></span></div>
</div>
<div>
<label for = "gender" class="form_title">성별 (예: 남 or 여)</label>
<input type="text" class="comment_input" id = "gender" name = "usergen">
</div>
<div>
<label for = "address" class="address_form">주소</label>
<input type="text" class="comment_input_postno" id="sample6_postcode" name = "addrnum" placeholder="우편번호">
<input type="button" class="comment_button_post trans_200" th:onclick="sample6_execDaumPostcode()" value="우편번호 찾기"><br>
<input type="text" class="comment_input_address" name = "useraddr" id="sample6_address" placeholder="주소"><br>
<input type="text" class="comment_input_detail" name = "addrdetail" id="sample6_detailAddress" placeholder="상세주소">
<input type="text" class="comment_input_detail" name = "addrextra" id="sample6_extraAddress" placeholder="참고항목">
</div>
<div>
<label for = "birth" class="form_title">생년월일 (예: 1994-11-08)</label>
<input type="text" class="comment_input" id = "birth" name = "userbirth">
</div>
<button id = "register_btn" class="comment_button trans_200">회원가입 하기</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</html>