This commit is contained in:
Lukian LEIZOUR 2024-06-04 15:14:31 +02:00
parent 4bb31eb679
commit fbf07e772d
4 changed files with 10 additions and 6 deletions

View file

@ -24,14 +24,14 @@ export default function Register() {
}
try {
const response = await axios.post("https://leizour.fr:3000/api/v1/auth/register", {
const response = await axios.post("https://leizour.fr/api/v1/auth/register", {
username: username,
name: name,
lastname: lastname,
password: password
})
const loginResponse = await axios.post("https://leizour.fr:3000/api/v1/auth/login", {
const loginResponse = await axios.post("https://leizour.fr/api/v1/auth/login", {
username: username,
password: password
})