-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
55 lines (50 loc) · 1.6 KB
/
script.js
File metadata and controls
55 lines (50 loc) · 1.6 KB
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
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 Contraint API
isValid = form.checkValidity()
// Check to see if passwors match
if (password1El.value === password2El.value) {
passwordsMatch = true
password1El.style.borderColor = 'green'
password2El.style.borderColor = 'green'
} else {
passwordsMatch = false
password1El.style.borderColor = 'red'
password2El.style.borderColor = 'red'
message.textContent = 'Make sure passwords match.'
message.style.color = 'red'
messageContainer.style.borderColor = 'red'
return
}
// If form is valid and passwords match
if (isValid && passwordsMatch) {
message.textContent = 'Successfully Registered!'
message.style.color = 'green'
messageContainer.style.borderColor = 'green'
}
}
function storeFormData() {
const user = {
name: form.name.value,
phone: form.phone.value,
email: form.email.value,
website: form.website.value,
password: form.password.value
}
}
function processFormData(e) {
e.preventDefault()
validateForm()
// submit Data if valid
if (isValid && passwordsMatch) {
storeFormData()
}
}
// Event Listener
form.addEventListener('submit', processFormData)