We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffe18d8 commit 4116cefCopy full SHA for 4116cef
LoginSignUp/SignIn.jsx
@@ -22,7 +22,7 @@ const SignIn = () => {
22
// login to system
23
24
try{
25
- const res = await axios.post('http://localhost:8081/SignIn', LoginData)
+ const res = await axios.post('http://localhost:8081/auth/SignIn', LoginData)
26
27
const loginToken = res.data.Token;
28
LoginSignUp/SignUp.jsx
@@ -23,7 +23,7 @@ const SignUp = () => {
// signup to system
- const res = await axios.post('http://localhost:8081/SignUp', SignUpData)
+ const res = await axios.post('http://localhost:8081/auth/SignUp', SignUpData)
.then(res => {
if(res.data.Status === "Success"){
29
alert("Registation Successfull")
0 commit comments