-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
72 lines (63 loc) · 1.86 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// Form Elements
const form = document.getElementById('form');
const password1El = document.getElementById('password1');
const password2El = document.getElementById('password2');
const messageContainer = document.querySelector('.message-container');
const message = document.getElementById('message');
let isValid = false;
let passwordsMatch = false;
function validateForm() {
// USing Constraing API
isValid = form.checkValidity();
// Style main message for an error
if (!isValid) {
message.textContent = 'Please fill out all fields.';
message.style.color = 'red';
messageContainer.style.borderColor = 'red';
return;
}
//Check if Passwords Match
if (password1El.value === password2El.value) {
passwordsMatch = true;
password1El.style.borderColor = 'green';
password2El.style.borderColor = 'green';
} else {
passwordsMatch = false;
message.textContent = 'Passwords do not match.';
message.style.color = 'red';
messageContainer.style.borderColor = 'red';
password1El.style.borderColor = 'red';
password2El.style.borderColor = 'red';
return;
}
// If form is valid and passowrds match
if (isValid && passwordsMatch) {
message.textContent = 'Successfully Registered!';
message.style.color = 'green';
messageContainer.style.borderColor = 'green';
}
}
// Store Form Data
function storeFormData() {
const user = {
name: form.name.value,
phone: form.phone.value,
email: form.email.value,
website: form.website.value,
password: form.password.value,
};
// Do something with user data
console.log(user);
}
// Function Process Form Data
function processFormData(e) {
e.preventDefault();
// Validate form
validateForm();
// Submit data if valid {
if (isValid && passwordsMatch) {
storeFormData();
}
}
// Event Listener
form.addEventListener('submit', processFormData);