diff --git a/frontend/src/components/authentication/SignUpPage.jsx b/frontend/src/components/authentication/SignUpPage.jsx index 8a2168c..daf452f 100644 --- a/frontend/src/components/authentication/SignUpPage.jsx +++ b/frontend/src/components/authentication/SignUpPage.jsx @@ -1,12 +1,6 @@ import React, { useState } from "react"; import { useNavigate } from "react-router-dom"; import axiosapi from "../../api/AuthenticationApi"; -import Button from "@mui/material/Button"; -import TextField from "@mui/material/TextField"; -import FormControlLabel from "@mui/material/FormControlLabel"; -import Checkbox from "@mui/material/Checkbox"; -import Link from "@mui/material/Link"; -import Typography from "@mui/material/Typography"; import { useCallback } from "react"; import Particles from "react-tsparticles"; import { loadFull } from "tsparticles"; @@ -108,13 +102,13 @@ export default function SignUp() { }, particles: { color: { - value: "#008000", + value: "#023020", }, links: { - color: "#00ff00", + color: "#228B22", distance: 150, enable: true, - opacity: 0.1, + opacity: 0.5, width: 1, }, move: { @@ -141,7 +135,7 @@ export default function SignUp() { type: "circle", }, size: { - value: { min: 4, max: 5 }, + value: { min: 6, max: 8 }, }, }, detectRetina: true, @@ -152,55 +146,75 @@ export default function SignUp() {