aboutsummaryrefslogtreecommitdiffstats
path: root/pages/login.js
diff options
context:
space:
mode:
authorJeff Kleinaitis <jeffkleinaitis@gmail.com>2024-04-09 12:16:47 -0700
committerGitHub <noreply@github.com>2024-04-09 12:16:47 -0700
commit88a12c89a3a58dc2f9780da64964b107bcafc62e (patch)
tree0e46eef49b12dcf07c3611cdcf018134724fc86d /pages/login.js
parent2374eae054935dd49adf3f0e29e8bea0876288f4 (diff)
parent85daf2a12a714dc51fb4c320bf508daf8127c125 (diff)
Merge pull request #20 from digadoo/develop
remove NextJS from project
Diffstat (limited to 'pages/login.js')
-rw-r--r--pages/login.js29
1 files changed, 0 insertions, 29 deletions
diff --git a/pages/login.js b/pages/login.js
deleted file mode 100644
index 899d6b9..0000000
--- a/pages/login.js
+++ /dev/null
@@ -1,29 +0,0 @@
-import React from "react";
-import FlexibleForm from "../components/flexibleForm";
-import benefitTwoImg from "../public/img/benefit-two.png";
-
-const Login = () => {
- return (
- <>
- <FlexibleForm
- imgPos="right"
- route="/profile"
- data={{
- image: benefitTwoImg,
- title: "Sign in to your account",
- subtitle: "sign in pls",
- formAction: process.env.API_URL,
- formMethod: "POST",
- formFields: [
- { label: "Email address", name: "email", type: "email", autoComplete: "email", required: true },
- { label: "Password", name: "password", type: "password", autoComplete: "current-password", required: true },
- ],
- ctaText: "Login",
- ctaLink: { text: "Don't have an account?", linkText: "Create an account instead!", url: "/sign-up" },
- underneathButton: {url: "/forgot-password", text: "Forgot Password?" }
- }}
- />
- </>
- );
-};
-export default Login;