loginpage.js
2.49 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
import React from "react";
import { Typography, Form, Input, Icon, Button} from 'antd';
import { withRouter, Link } from "react-router-dom";
import Axios from 'axios';
const { Title } = Typography;
console.log("start");
const userInfo = async (info) => {
const email = document.getElementById('email').value;
const pw = document.getElementById('password').value;
if(email && pw){
const userVariables = {
email,
pw
}
const response = await Axios.post('/api/login/userInfo', userVariables);
if(response.data !== 'FAIL'){
// loginForm.action = `/chat?${response.data}`;
// loginForm.submit();
var keyword = response.data.keyword;
var name = response.data.name;
sessionStorage.setItem("Now_userKeyword", keyword);
sessionStorage.setItem("Now_userName", name);
window.history.replaceState('login','','/chat');
window.history.go();
// window.location.href = "/chat";
} else{
alert("입력하신 정보와 일치하는 회원이 존재하지 않습니다 😥");
}
}
else{
alert("이메일과 패스워드를 입력해주세요!");
}
}
function loginpage() {
return (
<div>
<div style={{ display: 'flex', justifyContent: 'center', marginTop: '1rem', paddingTop: '10rem' }}>
<Title level={2}>Login Page</Title>
</div>
<div style={{ display: 'flex', justifyContent: 'center', marginTop: '1rem'}}>
<form style={{ width: '350px' }} name = "loginForm">
<Form.Item required>
<Input
id="email"
prefix={<Icon type="user" style={{ color: 'rgba(0,0,0,.25)' }} />}
placeholder="Enter your email"
type="email"
/>
</Form.Item>
<Form.Item required>
<Input
id="password"
prefix={<Icon type="lock" style={{ color: 'rgba(0,0,0,.25)' }} />}
placeholder="Enter your password"
type="password"
/>
</Form.Item>
<Form.Item>
<div>
<Button type="primary" className="login-form-button" style={{ minWidth: '100%' }} onClick={userInfo}>
Log in
</Button>
</div>
<Link to ="/register">가입하기</Link> Or <Link to = "/chat">비회원으로 사용하기</Link>
</Form.Item>
</form>
</div>
</div>
);
}
export default withRouter(loginpage);