diff --git a/src/App.js b/src/App.js index 0e6cd5f5..eb5dc87e 100644 --- a/src/App.js +++ b/src/App.js @@ -8,14 +8,14 @@ import NameBar from "./Components/NameBar/NameBar"; import TopBar from "./Components/TopBar/TopBar"; import CBASummaryBox from "./Components/SummaryBox/CreateBotAreaSummaryBox/CBASummaryBox"; import CSASummaryBox from "./Components/SummaryBox/CreateStrategyAreaSummaryBox/CSASummaryBox"; - +import ForgotPassword from "./Components/LogIn/ForgotPassword/ForgotPassword"; import CreateStrategyArea from "./Components/CreateStrategyArea/CreateStrategyArea"; import CreateBotArea from "./Components/CreateBotArea/CreateBotArea"; import SideBar from "./Components/SideBar/SideBar"; import Strategy from "./Components/Strategy/Strategy"; import * as BS from "react-bootstrap"; import ToggleVisibility from "./Components/SideBar/ToggleVisibility"; -import ForgotPassword from "./Components/LogIn/ForgotPassword/ForgotPassword" +import Settings from "./Components/Settings/Settings"; import SignIn from "./Components/LogIn/SignIn/SignIn"; @@ -26,9 +26,7 @@ let isLoggedIn = 1; function App() { return (
- {isLoggedIn ? ( - @@ -42,7 +40,6 @@ function App() { - } /> } /> } /> @@ -56,19 +53,21 @@ function App() { } /> } /> } /> + } /> - ) : ( - - } /> - } /> - } /> - } /> - - + ) : ( + + + } /> + } /> + } /> + } /> + + )}
); diff --git a/src/Components/Settings/Settings.css b/src/Components/Settings/Settings.css new file mode 100644 index 00000000..e69de29b diff --git a/src/Components/Settings/Settings.js b/src/Components/Settings/Settings.js new file mode 100644 index 00000000..3ced32ca --- /dev/null +++ b/src/Components/Settings/Settings.js @@ -0,0 +1,132 @@ +import React, { useState } from "react"; +import anonim from "./anonim.jpg"; +import * as BS from "react-bootstrap"; + +export function Settings() { + return ( + <> + + + + + +
GENERAL INFORMATION
+
+ +
+
+ + + Email address + + + This will be displayed as your creator name on the + Marketplace.{" "} + + + + + Example textarea + + + This will be displayed to all users and followers on the + Marketplace.{" "} + + +
+ + Update my profile + +
+
+
+
+ +
+
+
+ + + + + {" "} +
Your Notifications
+ + + + + + + + + + + + +
+ + {" "} +
Your Delivery Methods
+
+
+
+
+ + + + +
PASSWORD
+

Change your password to a new one.

+
+ + {" "} + + Change password + {" "} + +
+ + +
MULTI-FACTOR AUTHENTICATION
+

Setup or remove MFA devices.

+
+ + {" "} + + Setup or remove + {" "} + +
+
+
+
+ + ); +} + +export default Settings; diff --git a/src/Components/Settings/anonim.jpg b/src/Components/Settings/anonim.jpg new file mode 100644 index 00000000..41d5c10d Binary files /dev/null and b/src/Components/Settings/anonim.jpg differ