Skip to content

Commit

Permalink
link update
Browse files Browse the repository at this point in the history
  • Loading branch information
Doobiii authored and Doobiii committed Apr 4, 2024
1 parent 9e21e3c commit 58b38dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion frontend/src/pages/Signin/Singin.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import "./signin.css";
import { useState } from "react";
import axios from "axios";
import { Link } from "react-router-dom";
import { useNavigate } from "react-router-dom";
import { useDispatch } from "react-redux";
import { authActions } from "../../stores";
Expand Down Expand Up @@ -88,7 +89,7 @@ const Singin = () => {

<div className="text-center">
<p>
Not a member? <a href="/signup">Register</a>
Not a member? <Link to="/signup">Register</Link>
</p>
</div>
</div>
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/pages/Signup/Signup.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { useState } from "react";
import "./signup.css";
import axios from "axios";
import { Link } from "react-router-dom";
import { useNavigate } from "react-router-dom";
import { MDBContainer, MDBInput, MDBBtn } from "mdb-react-ui-kit";
const Signup = () => {
Expand Down Expand Up @@ -83,7 +84,7 @@ const Signup = () => {

<div className="text-center">
<p>
Already Registered? <a href="/signin">Login</a>
Already Registered? <Link to="/signin">Login</Link>
</p>
</div>
</div>
Expand Down

0 comments on commit 58b38dd

Please sign in to comment.