removed overkilling stuff
This commit is contained in:
@@ -2,14 +2,7 @@ import axios from "axios";
|
|||||||
import { useState, useContext, useEffect, FormEvent } from "react";
|
import { useState, useContext, useEffect, FormEvent } from "react";
|
||||||
import { useNavigate, Link } from "react-router-dom";
|
import { useNavigate, Link } from "react-router-dom";
|
||||||
import { AuthContext } from "../context/auth";
|
import { AuthContext } from "../context/auth";
|
||||||
import {
|
import { Box, Typography, TextField, Button, CircularProgress, Grid } from "@mui/material";
|
||||||
Box,
|
|
||||||
Typography,
|
|
||||||
TextField,
|
|
||||||
Button,
|
|
||||||
CircularProgress,
|
|
||||||
Grid,
|
|
||||||
} from "@mui/material";
|
|
||||||
import { useGlobalInfoStore } from "../context/globalInfo";
|
import { useGlobalInfoStore } from "../context/globalInfo";
|
||||||
import { apiUrl } from "../apiConfig";
|
import { apiUrl } from "../apiConfig";
|
||||||
|
|
||||||
@@ -33,12 +26,12 @@ const Login = () => {
|
|||||||
}
|
}
|
||||||
}, [user, navigate]);
|
}, [user, navigate]);
|
||||||
|
|
||||||
const handleChange = (e:any) => {
|
const handleChange = (e: any) => {
|
||||||
const { name, value } = e.target;
|
const { name, value } = e.target;
|
||||||
setForm({ ...form, [name]: value });
|
setForm({ ...form, [name]: value });
|
||||||
};
|
};
|
||||||
|
|
||||||
const submitForm = async (e:any) => {
|
const submitForm = async (e: any) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
setLoading(true);
|
setLoading(true);
|
||||||
try {
|
try {
|
||||||
@@ -57,36 +50,35 @@ const Login = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Grid container sx={{ height: "calc(100vh - 60px)" }}>
|
<Box
|
||||||
{/* Left Side: Login Form */}
|
sx={{
|
||||||
<Grid
|
display: "flex",
|
||||||
item
|
justifyContent: "center",
|
||||||
xs={12}
|
alignItems: "center",
|
||||||
md={6}
|
maxHeight: "100vh",
|
||||||
sx={{
|
mt: 6,
|
||||||
display: "flex",
|
padding: 4,
|
||||||
alignItems: "center",
|
}}
|
||||||
justifyContent: "center",
|
>
|
||||||
backgroundColor: "#ffffff", // Light background color
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Box
|
<Box
|
||||||
component="form"
|
component="form"
|
||||||
onSubmit={submitForm}
|
onSubmit={submitForm}
|
||||||
sx={{
|
sx={{
|
||||||
textAlign: "center",
|
textAlign: "center",
|
||||||
maxWidth: 400,
|
backgroundColor: "#ffffff",
|
||||||
width: "100%",
|
|
||||||
backgroundColor: "#f9f9f9",
|
|
||||||
padding: 4,
|
padding: 4,
|
||||||
borderRadius: 4,
|
borderRadius: 4,
|
||||||
boxShadow: "0px 0px 20px rgba(0, 0, 0, 0.1)",
|
boxShadow: "0px 4px 20px rgba(0, 0, 0, 0.1)",
|
||||||
border: "2px solid #ff00c3",
|
|
||||||
display: "flex",
|
display: "flex",
|
||||||
flexDirection: "column",
|
flexDirection: "column",
|
||||||
|
alignItems: "center",
|
||||||
|
maxWidth: 400,
|
||||||
|
width: "100%",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Typography variant="h4" gutterBottom color="#ff00c3">
|
<img src="../src/assets/maxunlogo.png" alt="logo" height={55} width={60} style={{ marginBottom: 20, borderRadius: "20%", alignItems: "center" }} />
|
||||||
|
<Typography variant="h4" gutterBottom>
|
||||||
Welcome Back!
|
Welcome Back!
|
||||||
</Typography>
|
</Typography>
|
||||||
<TextField
|
<TextField
|
||||||
@@ -101,26 +93,16 @@ const Login = () => {
|
|||||||
sx={{
|
sx={{
|
||||||
"& .MuiOutlinedInput-root": {
|
"& .MuiOutlinedInput-root": {
|
||||||
backgroundColor: email ? "#ffe6f9" : "#ffffff",
|
backgroundColor: email ? "#ffe6f9" : "#ffffff",
|
||||||
"& fieldset": {
|
"& fieldset": { borderColor: "#ff33cc" },
|
||||||
borderColor: "#ff33cc",
|
"&:hover fieldset": { borderColor: "#ff33cc" },
|
||||||
},
|
"&.Mui-focused fieldset": { borderColor: "#ff33cc" },
|
||||||
"&:hover fieldset": {
|
|
||||||
borderColor: "#ff33cc",
|
|
||||||
},
|
|
||||||
"&.Mui-focused fieldset": {
|
|
||||||
borderColor: "#ff33cc",
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
"& input:-webkit-autofill": {
|
"& input:-webkit-autofill": {
|
||||||
WebkitBoxShadow: "0 0 0 1000px #ffe6f9 inset",
|
WebkitBoxShadow: "0 0 0 1000px #ffe6f9 inset",
|
||||||
WebkitTextFillColor: "#000",
|
WebkitTextFillColor: "#000",
|
||||||
},
|
},
|
||||||
"& .MuiInputLabel-root": {
|
"& .MuiInputLabel-root": { color: email ? "#ff33cc" : "#000000" },
|
||||||
color: email ? "#ff33cc" : "#000000",
|
"& .MuiInputLabel-root.Mui-focused": { color: "#ff33cc" },
|
||||||
},
|
|
||||||
"& .MuiInputLabel-root.Mui-focused": {
|
|
||||||
color: "#ff33cc",
|
|
||||||
},
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<TextField
|
<TextField
|
||||||
@@ -136,29 +118,18 @@ const Login = () => {
|
|||||||
sx={{
|
sx={{
|
||||||
"& .MuiOutlinedInput-root": {
|
"& .MuiOutlinedInput-root": {
|
||||||
backgroundColor: password ? "#ffe6f9" : "#ffffff",
|
backgroundColor: password ? "#ffe6f9" : "#ffffff",
|
||||||
"& fieldset": {
|
"& fieldset": { borderColor: "#ff33cc" },
|
||||||
borderColor: "#ff33cc",
|
"&:hover fieldset": { borderColor: "#ff33cc" },
|
||||||
},
|
"&.Mui-focused fieldset": { borderColor: "#ff33cc" },
|
||||||
"&:hover fieldset": {
|
|
||||||
borderColor: "#ff33cc",
|
|
||||||
},
|
|
||||||
"&.Mui-focused fieldset": {
|
|
||||||
borderColor: "#ff33cc",
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
"& input:-webkit-autofill": {
|
"& input:-webkit-autofill": {
|
||||||
WebkitBoxShadow: "0 0 0 1000px #ffe6f9 inset",
|
WebkitBoxShadow: "0 0 0 1000px #ffe6f9 inset",
|
||||||
WebkitTextFillColor: "#000",
|
WebkitTextFillColor: "#000",
|
||||||
},
|
},
|
||||||
"& .MuiInputLabel-root": {
|
"& .MuiInputLabel-root": { color: password ? "#ff33cc" : "#000000" },
|
||||||
color: password ? "#ff33cc" : "#000000",
|
"& .MuiInputLabel-root.Mui-focused": { color: "#ff33cc" },
|
||||||
},
|
|
||||||
"& .MuiInputLabel-root.Mui-focused": {
|
|
||||||
color: "#ff33cc",
|
|
||||||
},
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
type="submit"
|
type="submit"
|
||||||
fullWidth
|
fullWidth
|
||||||
@@ -176,7 +147,6 @@ const Login = () => {
|
|||||||
"Login"
|
"Login"
|
||||||
)}
|
)}
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<Typography variant="body2" align="center">
|
<Typography variant="body2" align="center">
|
||||||
Don’t have an account?{" "}
|
Don’t have an account?{" "}
|
||||||
<Link to="/register" style={{ textDecoration: "none", color: "#ff33cc" }}>
|
<Link to="/register" style={{ textDecoration: "none", color: "#ff33cc" }}>
|
||||||
@@ -184,41 +154,8 @@ const Login = () => {
|
|||||||
</Link>
|
</Link>
|
||||||
</Typography>
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
</Grid>
|
|
||||||
|
|
||||||
{/* Right Side: Aesthetic Info Section */}
|
|
||||||
<Grid
|
|
||||||
item
|
|
||||||
xs={12}
|
|
||||||
md={6}
|
|
||||||
sx={{
|
|
||||||
display: "flex",
|
|
||||||
alignItems: "center",
|
|
||||||
justifyContent: "center",
|
|
||||||
backgroundColor: "#f5f5f5", // Subtle light background
|
|
||||||
padding: 4,
|
|
||||||
textAlign: "center",
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Box>
|
|
||||||
<Typography
|
|
||||||
variant="h3"
|
|
||||||
gutterBottom
|
|
||||||
sx={{
|
|
||||||
fontWeight: "bold",
|
|
||||||
color: "#ff33cc",
|
|
||||||
textShadow: "1px 1px 5px rgba(255, 0, 195, 0.2)",
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
Welcome to Maxun
|
|
||||||
</Typography>
|
|
||||||
<Typography variant="h6" sx={{ color: "#555" }}>
|
|
||||||
Maxun is a powerful visual website scraper that makes extracting data from any website as easy as a few clicks.
|
|
||||||
No more complex code or time-consuming processes—Maxun does the heavy lifting for you. Start your data extraction journey with us!
|
|
||||||
</Typography>
|
|
||||||
</Box>
|
</Box>
|
||||||
</Grid>
|
|
||||||
</Grid>
|
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,15 +1,8 @@
|
|||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import { useState, useContext, useEffect, FormEvent } from "react";
|
import { useState, useContext, useEffect } from "react";
|
||||||
import { useNavigate, Link } from "react-router-dom";
|
import { useNavigate, Link } from "react-router-dom";
|
||||||
import { AuthContext } from "../context/auth";
|
import { AuthContext } from "../context/auth";
|
||||||
import {
|
import { Box, Typography, TextField, Button, CircularProgress } from "@mui/material";
|
||||||
Box,
|
|
||||||
Typography,
|
|
||||||
TextField,
|
|
||||||
Button,
|
|
||||||
CircularProgress,
|
|
||||||
Grid,
|
|
||||||
} from "@mui/material";
|
|
||||||
import { useGlobalInfoStore } from "../context/globalInfo";
|
import { useGlobalInfoStore } from "../context/globalInfo";
|
||||||
import { apiUrl } from "../apiConfig";
|
import { apiUrl } from "../apiConfig";
|
||||||
|
|
||||||
@@ -17,11 +10,10 @@ const Register = () => {
|
|||||||
const [form, setForm] = useState({
|
const [form, setForm] = useState({
|
||||||
email: "",
|
email: "",
|
||||||
password: "",
|
password: "",
|
||||||
confirmPassword: "",
|
|
||||||
});
|
});
|
||||||
const [loading, setLoading] = useState(false);
|
const [loading, setLoading] = useState(false);
|
||||||
const { notify } = useGlobalInfoStore();
|
const { notify } = useGlobalInfoStore();
|
||||||
const { email, password, confirmPassword } = form;
|
const { email, password } = form;
|
||||||
|
|
||||||
const { state, dispatch } = useContext(AuthContext);
|
const { state, dispatch } = useContext(AuthContext);
|
||||||
const { user } = state;
|
const { user } = state;
|
||||||
@@ -41,10 +33,6 @@ const Register = () => {
|
|||||||
|
|
||||||
const submitForm = async (e: any) => {
|
const submitForm = async (e: any) => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
if (password !== confirmPassword) {
|
|
||||||
notify("error", "Passwords do not match.");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
setLoading(true);
|
setLoading(true);
|
||||||
try {
|
try {
|
||||||
const { data } = await axios.post(`${apiUrl}/auth/register`, {
|
const { data } = await axios.post(`${apiUrl}/auth/register`, {
|
||||||
@@ -52,7 +40,7 @@ const Register = () => {
|
|||||||
password,
|
password,
|
||||||
});
|
});
|
||||||
dispatch({ type: "LOGIN", payload: data });
|
dispatch({ type: "LOGIN", payload: data });
|
||||||
notify("success", "Welcome to Maxun!");
|
notify("success", "Registration Successful!");
|
||||||
window.localStorage.setItem("user", JSON.stringify(data));
|
window.localStorage.setItem("user", JSON.stringify(data));
|
||||||
navigate("/");
|
navigate("/");
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
@@ -62,203 +50,110 @@ const Register = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Grid container sx={{ height: "calc(100vh - 60px)" }}>
|
<Box
|
||||||
{/* Left Side: Register Form */}
|
sx={{
|
||||||
<Grid
|
display: "flex",
|
||||||
item
|
justifyContent: "center",
|
||||||
xs={12}
|
alignItems: "center",
|
||||||
md={6}
|
maxHeight: "100vh",
|
||||||
|
mt: 6,
|
||||||
|
padding: 4,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Box
|
||||||
|
component="form"
|
||||||
|
onSubmit={submitForm}
|
||||||
sx={{
|
sx={{
|
||||||
display: "flex",
|
|
||||||
alignItems: "center",
|
|
||||||
justifyContent: "center",
|
|
||||||
backgroundColor: "#ffffff", // Light background color
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Box
|
|
||||||
component="form"
|
|
||||||
onSubmit={submitForm}
|
|
||||||
sx={{
|
|
||||||
textAlign: "center",
|
|
||||||
maxWidth: 400,
|
|
||||||
width: "100%",
|
|
||||||
backgroundColor: "#f9f9f9",
|
|
||||||
padding: 4,
|
|
||||||
borderRadius: 4,
|
|
||||||
boxShadow: "0px 0px 20px rgba(0, 0, 0, 0.1)",
|
|
||||||
border: "2px solid #ff00c3",
|
|
||||||
display: "flex",
|
|
||||||
flexDirection: "column",
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<Typography variant="h4" gutterBottom color="#ff00c3">
|
|
||||||
Create an Account
|
|
||||||
</Typography>
|
|
||||||
<TextField
|
|
||||||
fullWidth
|
|
||||||
label="Email"
|
|
||||||
name="email"
|
|
||||||
value={email}
|
|
||||||
onChange={handleChange}
|
|
||||||
margin="normal"
|
|
||||||
variant="outlined"
|
|
||||||
required
|
|
||||||
sx={{
|
|
||||||
"& .MuiOutlinedInput-root": {
|
|
||||||
backgroundColor: email ? "#ffe6f9" : "#ffffff",
|
|
||||||
"& fieldset": {
|
|
||||||
borderColor: "#ff33cc",
|
|
||||||
},
|
|
||||||
"&:hover fieldset": {
|
|
||||||
borderColor: "#ff33cc",
|
|
||||||
},
|
|
||||||
"&.Mui-focused fieldset": {
|
|
||||||
borderColor: "#ff33cc",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"& input:-webkit-autofill": {
|
|
||||||
WebkitBoxShadow: "0 0 0 1000px #ffe6f9 inset",
|
|
||||||
WebkitTextFillColor: "#000",
|
|
||||||
},
|
|
||||||
"& .MuiInputLabel-root": {
|
|
||||||
color: email ? "#ff33cc" : "#000000",
|
|
||||||
},
|
|
||||||
"& .MuiInputLabel-root.Mui-focused": {
|
|
||||||
color: "#ff33cc",
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<TextField
|
|
||||||
fullWidth
|
|
||||||
label="Password"
|
|
||||||
name="password"
|
|
||||||
type="password"
|
|
||||||
value={password}
|
|
||||||
onChange={handleChange}
|
|
||||||
margin="normal"
|
|
||||||
variant="outlined"
|
|
||||||
required
|
|
||||||
sx={{
|
|
||||||
"& .MuiOutlinedInput-root": {
|
|
||||||
backgroundColor: password ? "#ffe6f9" : "#ffffff",
|
|
||||||
"& fieldset": {
|
|
||||||
borderColor: "#ff33cc",
|
|
||||||
},
|
|
||||||
"&:hover fieldset": {
|
|
||||||
borderColor: "#ff33cc",
|
|
||||||
},
|
|
||||||
"&.Mui-focused fieldset": {
|
|
||||||
borderColor: "#ff33cc",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"& input:-webkit-autofill": {
|
|
||||||
WebkitBoxShadow: "0 0 0 1000px #ffe6f9 inset",
|
|
||||||
WebkitTextFillColor: "#000",
|
|
||||||
},
|
|
||||||
"& .MuiInputLabel-root": {
|
|
||||||
color: password ? "#ff33cc" : "#000000",
|
|
||||||
},
|
|
||||||
"& .MuiInputLabel-root.Mui-focused": {
|
|
||||||
color: "#ff33cc",
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<TextField
|
|
||||||
fullWidth
|
|
||||||
label="Confirm Password"
|
|
||||||
name="confirmPassword"
|
|
||||||
type="password"
|
|
||||||
value={confirmPassword}
|
|
||||||
onChange={handleChange}
|
|
||||||
margin="normal"
|
|
||||||
variant="outlined"
|
|
||||||
required
|
|
||||||
sx={{
|
|
||||||
"& .MuiOutlinedInput-root": {
|
|
||||||
backgroundColor: confirmPassword ? "#ffe6f9" : "#ffffff",
|
|
||||||
"& fieldset": {
|
|
||||||
borderColor: "#ff33cc",
|
|
||||||
},
|
|
||||||
"&:hover fieldset": {
|
|
||||||
borderColor: "#ff33cc",
|
|
||||||
},
|
|
||||||
"&.Mui-focused fieldset": {
|
|
||||||
borderColor: "#ff33cc",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
"& input:-webkit-autofill": {
|
|
||||||
WebkitBoxShadow: "0 0 0 1000px #ffe6f9 inset",
|
|
||||||
WebkitTextFillColor: "#000",
|
|
||||||
},
|
|
||||||
"& .MuiInputLabel-root": {
|
|
||||||
color: confirmPassword ? "#ff33cc" : "#000000",
|
|
||||||
},
|
|
||||||
"& .MuiInputLabel-root.Mui-focused": {
|
|
||||||
color: "#ff33cc",
|
|
||||||
},
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
|
|
||||||
<Button
|
|
||||||
type="submit"
|
|
||||||
fullWidth
|
|
||||||
variant="contained"
|
|
||||||
color="primary"
|
|
||||||
sx={{ mt: 2, mb: 2 }}
|
|
||||||
disabled={loading || !email || !password || !confirmPassword}
|
|
||||||
>
|
|
||||||
{loading ? (
|
|
||||||
<>
|
|
||||||
<CircularProgress size={20} sx={{ mr: 2 }} />
|
|
||||||
Loading
|
|
||||||
</>
|
|
||||||
) : (
|
|
||||||
"Register"
|
|
||||||
)}
|
|
||||||
</Button>
|
|
||||||
|
|
||||||
<Typography variant="body2" align="center">
|
|
||||||
Already have an account?{" "}
|
|
||||||
<Link to="/login" style={{ textDecoration: "none", color: "#ff33cc" }}>
|
|
||||||
Login
|
|
||||||
</Link>
|
|
||||||
</Typography>
|
|
||||||
</Box>
|
|
||||||
</Grid>
|
|
||||||
|
|
||||||
{/* Right Side: Aesthetic Info Section */}
|
|
||||||
<Grid
|
|
||||||
item
|
|
||||||
xs={12}
|
|
||||||
md={6}
|
|
||||||
sx={{
|
|
||||||
display: "flex",
|
|
||||||
alignItems: "center",
|
|
||||||
justifyContent: "center",
|
|
||||||
backgroundColor: "#f5f5f5", // Subtle light background
|
|
||||||
padding: 4,
|
|
||||||
textAlign: "center",
|
textAlign: "center",
|
||||||
|
maxWidth: 400,
|
||||||
|
width: "100%",
|
||||||
|
backgroundColor: "#ffffff",
|
||||||
|
padding: 4,
|
||||||
|
borderRadius: 4,
|
||||||
|
boxShadow: "0px 0px 20px rgba(0, 0, 0, 0.1)",
|
||||||
|
display: "flex",
|
||||||
|
flexDirection: "column",
|
||||||
|
alignItems: "center",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Box>
|
<img src="../src/assets/maxunlogo.png" alt="logo" height={55} width={60} style={{ marginBottom: 20, borderRadius: "20%", alignItems: "center" }} />
|
||||||
<Typography
|
<Typography variant="h4" gutterBottom>
|
||||||
variant="h3"
|
Create an Account
|
||||||
gutterBottom
|
</Typography>
|
||||||
sx={{
|
<TextField
|
||||||
fontWeight: "bold",
|
fullWidth
|
||||||
color: "#ff33cc",
|
label="Email"
|
||||||
textShadow: "1px 1px 5px rgba(255, 0, 195, 0.2)",
|
name="email"
|
||||||
}}
|
value={email}
|
||||||
>
|
onChange={handleChange}
|
||||||
Welcome to Maxun
|
margin="normal"
|
||||||
</Typography>
|
variant="outlined"
|
||||||
<Typography variant="h6" sx={{ color: "#555" }}>
|
required
|
||||||
Maxun is a powerful visual website scraper that makes extracting data from any website as easy as a few clicks.
|
sx={{
|
||||||
No more complex code or time-consuming processes—Maxun does the heavy lifting for you. Start your data extraction journey with us!
|
"& .MuiOutlinedInput-root": {
|
||||||
</Typography>
|
backgroundColor: email ? "#ffe6f9" : "#ffffff",
|
||||||
</Box>
|
"& fieldset": { borderColor: "#ff33cc" },
|
||||||
</Grid>
|
"&:hover fieldset": { borderColor: "#ff33cc" },
|
||||||
</Grid>
|
"&.Mui-focused fieldset": { borderColor: "#ff33cc" },
|
||||||
|
},
|
||||||
|
"& input:-webkit-autofill": {
|
||||||
|
WebkitBoxShadow: "0 0 0 1000px #ffe6f9 inset",
|
||||||
|
WebkitTextFillColor: "#000",
|
||||||
|
},
|
||||||
|
"& .MuiInputLabel-root": { color: email ? "#ff33cc" : "#000000" },
|
||||||
|
"& .MuiInputLabel-root.Mui-focused": { color: "#ff33cc" },
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<TextField
|
||||||
|
fullWidth
|
||||||
|
label="Password"
|
||||||
|
name="password"
|
||||||
|
type="password"
|
||||||
|
value={password}
|
||||||
|
onChange={handleChange}
|
||||||
|
margin="normal"
|
||||||
|
variant="outlined"
|
||||||
|
required
|
||||||
|
sx={{
|
||||||
|
"& .MuiOutlinedInput-root": {
|
||||||
|
backgroundColor: password ? "#ffe6f9" : "#ffffff",
|
||||||
|
"& fieldset": { borderColor: "#ff33cc" },
|
||||||
|
"&:hover fieldset": { borderColor: "#ff33cc" },
|
||||||
|
"&.Mui-focused fieldset": { borderColor: "#ff33cc" },
|
||||||
|
},
|
||||||
|
"& input:-webkit-autofill": {
|
||||||
|
WebkitBoxShadow: "0 0 0 1000px #ffe6f9 inset",
|
||||||
|
WebkitTextFillColor: "#000",
|
||||||
|
},
|
||||||
|
"& .MuiInputLabel-root": { color: password ? "#ff33cc" : "#000000" },
|
||||||
|
"& .MuiInputLabel-root.Mui-focused": { color: "#ff33cc" },
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<Button
|
||||||
|
type="submit"
|
||||||
|
fullWidth
|
||||||
|
variant="contained"
|
||||||
|
color="primary"
|
||||||
|
sx={{ mt: 2, mb: 2 }}
|
||||||
|
disabled={loading || !email || !password}
|
||||||
|
>
|
||||||
|
{loading ? (
|
||||||
|
<>
|
||||||
|
<CircularProgress size={20} sx={{ mr: 2 }} />
|
||||||
|
Loading
|
||||||
|
</>
|
||||||
|
) : (
|
||||||
|
"Register"
|
||||||
|
)}
|
||||||
|
</Button>
|
||||||
|
<Typography variant="body2" align="center">
|
||||||
|
Already have an account?{" "}
|
||||||
|
<Link to="/login" style={{ textDecoration: "none", color: "#ff33cc" }}>
|
||||||
|
Login
|
||||||
|
</Link>
|
||||||
|
</Typography>
|
||||||
|
</Box>
|
||||||
|
</Box>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user