LoginPage.js
2.94 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
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
import React, { useState } from "react";
import { makeStyles } from "@material-ui/core/styles";
import { Link } from "react-router-dom";
import Grid from "@material-ui/core/Grid";
import Paper from "@material-ui/core/Paper";
import TextField from "@material-ui/core/TextField";
import Button from "@material-ui/core/Button";
const useStyles = makeStyles((theme) => ({
root: {
position: "fixed",
minHeight: "100vh",
minWidth: "100vw",
backgroundColor: "rgba(0,0,0,0.8)",
},
paper: {
width: "25rem",
height: "28rem",
marginTop: "8rem",
marginLeft: "auto",
marginRight: "auto",
backgroundColor: "rgba(255,255,255,0.8)",
},
grid: {
"& > *": {
position: "relative",
marginLeft: "auto",
marginRight: "auto",
},
},
title: {
width: "100%",
marginTop: "5rem",
fontSize: 40,
textAlign: "center",
},
idInput: {
top: "3.5rem",
width: "70%",
},
pwInput: {
top: "5.5rem",
width: "70%",
},
signin: {
top: "7.4rem",
width: "70%",
},
signup: {
top: "7.9rem",
fontSize: 13,
},
}));
export default function LandingPage(props) {
const classes = useStyles();
const [userID, setUserID] = useState();
const [userPW, setUserPW] = useState();
const loginApi = (data) => {
return fetch("/api/login", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(data),
}).then((response) => response.json());
};
const handleLogin = () => {
if (!userID || !userPW) {
alert("All blanks must be filled. Try agian.");
}
else {
loginApi({
userID: userID,
userPW: userPW,
});
alert("Successfully login!");
props.history.push("/login");
}
};
return (
<div className={classes.root}>
<Paper className={classes.paper} elevation={3}>
<Grid container className={classes.grid}>
<div className={classes.title}>LOGIN</div>
<TextField
className={classes.idInput}
label="ID"
variant="outlined"
size="small"
onChange={(e) => {
setUserID(e.target.value);
}}
/>
<TextField
className={classes.pwInput}
label="Password"
type="password"
autoComplete="current-password"
variant="outlined"
size="small"
onChange={(e) => {
setUserPW(e.target.value);
}}
/>
<Button className={classes.signin} variant="outlined" size="small" onClick={handleLogin}>
Login
</Button>
<div className={classes.signup}>
<Link
to="/signup"
style={{ color: "gray", textDecoration: "none" }}
>
Click here to SIGN UP
</Link>
</div>
</Grid>
</Paper>
</div>
);
}