Skip to content

Commit

Permalink
Add user page (#217)
Browse files Browse the repository at this point in the history
* Add User Page.

Signed-off-by: June Saehwan <[email protected]>
Co-authored-by: Han Kyuhyun <[email protected]>
Co-authored-by: ByunJeongHeum <[email protected]>
Co-authored-by: Jongmin Lee <[email protected]>

* Add error handling code during login check

Signed-off-by: June Saehwan <[email protected]>
Co-authored-by: Han Kyuhyun <[email protected]>
Co-authored-by: ByunJeongHeum <[email protected]>
Co-authored-by: Jongmin Lee <[email protected]>

* Add User Page backend logic.

Signed-off-by: Han Kyuhyun <[email protected]>
Co-authored-by: ByunJeongHeum <[email protected]>
Co-authored-by: June Saehwan <[email protected]>
Co-authored-by: Jongmin Lee <[email protected]>

* Fix User Page bug.

Signed-off-by: June Saehwan <[email protected]>
Co-authored-by: Han Kyuhyun <[email protected]>
Co-authored-by: ByunJeongHeum <[email protected]>
Co-authored-by: Jongmin Lee <[email protected]>

* Update code based on feedback

Signed-off-by: jongmin Lee <[email protected]>
Co-authored-by: Han Kyuhyun <[email protected]>
Co-authored-by: ByunJeongHeum <[email protected]>
Co-authored-by: June Saehwan <[email protected]>

* Update code based on feedback

Signed-off-by: jongmin Lee <[email protected]>
Co-authored-by: Han Kyuhyun <[email protected]>
Co-authored-by: ByunJeongHeum <[email protected]>
Co-authored-by: June Saehwan <[email protected]>

---------

Signed-off-by: June Saehwan <[email protected]>
Signed-off-by: Han Kyuhyun <[email protected]>
Signed-off-by: jongmin Lee <[email protected]>
Co-authored-by: hwan <[email protected]>
Co-authored-by: ByunJeongHeum <[email protected]>
Co-authored-by: Jongmin Lee <[email protected]>
  • Loading branch information
4 people authored Sep 19, 2023
1 parent f902dbc commit 554d8f4
Show file tree
Hide file tree
Showing 9 changed files with 913 additions and 6 deletions.
Binary file added frontend/public/image/png/ProfileBoxStroke.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions frontend/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import React from 'react';
import { BrowserRouter, Routes, Route } from "react-router-dom";
import Home from './pages/Home';
import Login from './pages/Login';
import User from './pages/User';

function App() {
return (
Expand All @@ -18,6 +19,7 @@ function App() {
<Route path="/" element={<Home />} />
<Route path="/home" element={<Home />} />
<Route path="/login" element={<Login />} />
<Route path="/user/info" element={<User />} />
</Routes>
</div>
</BrowserRouter>
Expand Down
Loading

0 comments on commit 554d8f4

Please sign in to comment.