diff --git a/client/src/App.jsx b/client/src/App.jsx index 7e5c491..3238d2e 100644 --- a/client/src/App.jsx +++ b/client/src/App.jsx @@ -13,8 +13,10 @@ import Admin_Upcoming from "./pages/Admin/Admin_UpcomingMovie"; import Admin_Logout from "./pages/Admin/Admin_Logout"; import Payment from "./pages/Payment"; import { Seatbooking } from "./pages/Seatbooking/Seatbooking"; -import Description from './pages/Description' -import Profile from './pages/Profile/Profile' +import Description from './pages/Description'; +import Profile from './pages/Profile/Profile'; +import Profile_Edit from './pages/Profile/Profile-Edit'; + function App() { return ( @@ -31,6 +33,7 @@ function App() { } /> } /> } /> + } /> diff --git a/client/src/pages/Profile/Profile-Edit.jsx b/client/src/pages/Profile/Profile-Edit.jsx new file mode 100644 index 0000000..11e4f36 --- /dev/null +++ b/client/src/pages/Profile/Profile-Edit.jsx @@ -0,0 +1,40 @@ +import './Layout.css' + +function Profile() { + return ( +
+
+
+

Edit Profile

+
+
+ + +
+
+ +
+ +
+
+ + + +
+ + + +
+ + + +
+
+
+ ) + +
+ ) +} + +export default Profile \ No newline at end of file