added logic / Form stuff

This commit is contained in:
StockiP
2022-05-02 09:21:19 +02:00
parent 664bf41c91
commit 4e6af105f5
6 changed files with 115 additions and 55 deletions

View File

@@ -1,41 +1,42 @@
const email = document.getElementById('email');
const password = document.getElementById('password');
const password2 = document.getElementById('password2');
password2.addEventListener('change', checkPassword);
const form = document.getElementById('marmeladenLadenRegisterForm');
form.addEventListener('submit', register);
async function register(event) {
event.preventDefault();
function register() {
//check password with checkPassword function
if (checkPassword()) {
//get form data
const formData = new FormData(form);
//create object with form data
const data = {};
formData.forEach((value, key) => data[key] = value);
$.ajax({
url: 'php/registration.php',
type: 'POST',
data: {
email: email.value,
password: password.value,
password2: password2.value
},
success: function (data) {
if (data == 'success') {
window.location.href = 'index.html';
} else {
alert(data);
//send data to php with Ajax
$.ajax({
url: '../logic/serviceLogic.php',
type: 'POST',
data: {method: 'register', data: data},
datatype: 'json',
success: function (response) {
if (response === 'success') {
window.location.replace('index.html');
} else {
alert(response);
}
}
}
});
return false;
});
}
}
var formData = new FormData(form);
const jSONdata = JSON.stringify(Object.fromEntries(formData));
//print elements of jSONdata
console.log(jSONdata);
function checkPassword() {
async function checkPassword() {
if (password.value != password2.value) {
password2.setCustomValidity('Passwords do not match');
return false;
@@ -43,14 +44,4 @@ function checkPassword() {
password2.setCustomValidity('');
return true;
}
}
function checkemail() {
if (email.value != '') {
email.setCustomValidity('');
return true;
} else {
email.setCustomValidity('Email is required');
return false;
}
}