diff --git a/app/javascript/components/Account/ForgotPasswordPage/index.tsx b/app/javascript/components/Account/ForgotPasswordPage/index.tsx new file mode 100644 index 0000000000..08b7658863 --- /dev/null +++ b/app/javascript/components/Account/ForgotPasswordPage/index.tsx @@ -0,0 +1,46 @@ +import * as React from "react"; + +import Container from "../../Container"; + +const ForgotPasswordPage = () => ( + +

+ Miru +

+
+

+ Forgot Password +

+ +
+
+ +
+ +
+ +
+ +
+
+
+

+ Sign In +

+
+
+
+); + +export default ForgotPasswordPage; diff --git a/app/javascript/components/App.tsx b/app/javascript/components/App.tsx index 21b8d920ec..710fc10709 100644 --- a/app/javascript/components/App.tsx +++ b/app/javascript/components/App.tsx @@ -2,6 +2,7 @@ import * as React from "react"; import { Routes, Route, BrowserRouter as Router } from "react-router-dom"; import { ToastContainer } from "react-toastify"; +import ForgotPasswordPage from "./Account/ForgotPasswordPage"; import LoginPage from "./Account/LoginPage"; import SignupPage from "./Account/SignupPage"; @@ -22,6 +23,7 @@ const App = () => { } /> } /> + } /> ); diff --git a/app/javascript/components/Container.tsx b/app/javascript/components/Container.tsx new file mode 100644 index 0000000000..0840ff220d --- /dev/null +++ b/app/javascript/components/Container.tsx @@ -0,0 +1,9 @@ +import * as React from "react"; + +const Container = ({ children }) => ( +
+
{children}
+
+); + +export default Container;