[Sign-up_script] Script should call out api service

This commit is contained in:
eoghan.conlon 2023-07-27 19:57:53 +01:00
parent 76a28c9995
commit d921d6967f

View file

@ -11,13 +11,11 @@ function formHandler(listener){
formData.append("field", "password");
formData.append("value", newPW);
const object = Object.fromEntries(formData.entries());
//TODO: Change this to use our api
fetch('https://reqres.in/api/update', {
fetch('https://api.sso.skynet.ie/ldap/update', {
method: 'POST',
body: object
}).then(res => {
//TODO: Change success to use 200 rather than 201 (This is the code that the api testing service uses for the chosen api)
if(res.status === 201) {
if(res.status === 200) {
document.getElementById('formStatus').innerHTML = "<span style='background-color: green; color: white'>Success</span>";
} else if (res.status === 500){
document.getElementById('formStatus').innerHTML = "<span style='background-color: red; color: white'>Failure</span>";