Compare commits

..

No commits in common. "76a1b592acad4fbce7f2c5e8d4ac86b82c17520c" and "03d3d272df42567542f68893346adb94b7bae37b" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View file

@ -153,7 +153,7 @@ export default {
this.loginSuccess = false; this.loginSuccess = false;
try { try {
const response = await axios.post('http://localhost:5000/api/login', { const response = await axios.post('http://localhost:5000/auth/login', {
username: this.username, username: this.username,
password: this.password, password: this.password,
}); });

View file

@ -302,7 +302,7 @@ export default {
this.successMessage = null; this.successMessage = null;
try { try {
const response = await axios.post('http://localhost:5000/api/signup', { const response = await axios.post('http://localhost:5000/auth/signup', {
firstName: this.firstName, firstName: this.firstName,
lastName: this.lastName, lastName: this.lastName,
username: this.username, username: this.username,