main.js
1.64 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
function moveSquatPage()
{
location.href = "/squat";
}
$(document).ready(function(){
$('#button').click(function(){
let sendName = $('#name').val();
let sendPassword = $('#password').val();
let sendData = {
"name" : sendName,
"password" : sendPassword
}
$.ajax({
contentType : "application/json; charset=utf-8",
type : 'post',
url : 'api/users/login',
data : JSON.stringify(sendData),
dataType : 'JSON',
success : function(datas) {
if (datas.loginSuccess)
{
moveSquartPage()
}
else
{
alert(datas.message)
}
}
})
})
})
// 회원가입용
$(document).ready(function(){
$('#register_button').click(function(){
let sendName = $('#register_name').val();
let sendPassword = $('#register_password').val();
let sendData = {
"name" : sendName,
"password" : sendPassword
}
$.ajax({
contentType : "application/json; charset=utf-8",
type : 'post',
url : 'api/users/register',
data : JSON.stringify(sendData),
dataType : 'JSON',
success : function(datas) {
if (datas.success)
{
moveSquartPage()
}
else
{
alert("회원가입 실패 (이름 중복 의심)")
}
}
})
})
})