Commit 357a457d authored by 박상호's avatar 박상호 🎼
Browse files

zz

parent 77b30e2e
...@@ -38,12 +38,7 @@ function App() { ...@@ -38,12 +38,7 @@ function App() {
<Route path="/payment" component={Payment} /> <Route path="/payment" component={Payment} />
<Route path="/mypage" component={Mypage} /> <Route path="/mypage" component={Mypage} />
<Route path='/kakao' component={() => { window.location.href = 'https://compmath.korea.ac.kr'; return null; }} /> <Route path='/kakao' component={() => { window.location.href = 'https://compmath.korea.ac.kr'; return null; }} />
<PrivateRoute path="/profile">
<Profile />
</PrivateRoute>
<PrivateRoute path="/profile-edit">
<EditProfile />
</PrivateRoute>
<Redirect path="/" to="/" /> <Redirect path="/" to="/" />
</Switch> </Switch>
</Router> </Router>
......
...@@ -177,8 +177,8 @@ const [validated, setValidated] = useState(false); ...@@ -177,8 +177,8 @@ const [validated, setValidated] = useState(false);
</Form.Group> </Form.Group>
<Button <Button
style={{ background: '#91877F', borderColor: '#91877F' }} type="submit" block style={{ background: '#91877F', borderColor: '#91877F' }} type="submit" block
onClick={checkPassword} onClick={checkPassword}>
>
Sign Up Sign Up
</Button> </Button>
</Form> </Form>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment