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 a5cadb3 commit ffe18d8Copy full SHA for ffe18d8
LoginSignUpTW/SignIn.jsx
@@ -19,7 +19,7 @@ const SignIn = () => {
19
// login to system
20
21
try{
22
- const res = await axios.post('http://localhost:8081/SignIn', LoginData)
+ const res = await axios.post('http://localhost:8081/auth/SignIn', LoginData)
23
24
const loginToken = res.data.Token;
25
LoginSignUpTW/SignUp.jsx
@@ -19,7 +19,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"){
alert("Registation Successfull")
0 commit comments