aboutsummaryrefslogtreecommitdiffstats
path: root/pages/forgot-password.js
diff options
context:
space:
mode:
authorJeff <jeffkleinaitis@gmail.com>2024-04-09 15:12:50 -0400
committerJeff <jeffkleinaitis@gmail.com>2024-04-09 15:12:50 -0400
commit9ac6e1ddef7a1a9f277b9736fee08d97247adab2 (patch)
treeb2b5ce4599514ba744744ba3f0d6f64de7c2602e /pages/forgot-password.js
parent102324996e227e1e9bf70a1641afb7b438d56276 (diff)
refactor: Remove NextJS from project
Diffstat (limited to 'pages/forgot-password.js')
-rw-r--r--pages/forgot-password.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/pages/forgot-password.js b/pages/forgot-password.js
deleted file mode 100644
index c110aad..0000000
--- a/pages/forgot-password.js
+++ /dev/null
@@ -1,26 +0,0 @@
-import React from "react";
-import FlexibleForm from "../components/flexibleForm";
-import benefitTwoImg from "../public/img/benefit-two.png";
-
-const ForgotPassword = () => {
- return (
- <>
- <FlexibleForm
- imgPos="right"
- route="/login"
- data={{
- image: benefitTwoImg,
- title: "Reset your password",
- subtitle: "Enter the email associated with your account.",
- formAction: process.env.API_URL,
- formMethod: "POST",
- formFields: [
- { label: "Email address", name: "email", type: "email", autoComplete: "email", required: true },
- ],
- underneathButton: {url: "/login", text: "Back" }
- }}
- />
- </>
- );
-};
-export default ForgotPassword;