-
Register
-
- To create an account, enter your email address. You will then be sent an
- email containing a registration link. (This helps to avoid part of the
- song and dance with email verification.)
-
-
{
- setEmail(e.target.value);
- }}
- value={email}
- required
- />
- Send Code
-
-
-
- );
-};
-
-export default RegistrationEmail;
diff --git a/frontend/src/pages/ResetPassword.tsx b/frontend/src/pages/ResetPassword.tsx
deleted file mode 100644
index 2eaaa665..00000000
--- a/frontend/src/pages/ResetPassword.tsx
+++ /dev/null
@@ -1,64 +0,0 @@
-import TCButton from "components/files/TCButton";
-import { useAlertQueue } from "hooks/alerts";
-import { api } from "hooks/api";
-import { useAuthentication } from "hooks/auth";
-import { FormEvent, useState } from "react";
-import { Form } from "react-bootstrap";
-import { useParams } from "react-router-dom";
-
-const ResetPassword = () => {
- const auth = useAuthentication();
- const auth_api = new api(auth.api);
- const { token } = useParams();
-
- const [password, setPassword] = useState