-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
68 lines (58 loc) · 2.32 KB
/
script.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
document.getElementById('myForm').addEventListener('submit', function (event) {
event.preventDefault();
let isValid = true;
// First name validation
const fName = document.getElementById('fName').value;
const nameRegex = /^[a-zA-Z]{3,19}$/;
if (!nameRegex.test(fName)) {
isValid = false;
document.getElementById('fnameError').classList.add('error-msg');
document.getElementById('fnameError').style.display = 'block';
document.getElementById('fnameError').textContent = 'Invalid Name!';
} else {
document.getElementById('fnameError').style.display = 'none';
}
// Last name validation
const lName = document.getElementById('lName').value;
if (!nameRegex.test(lName)) {
isValid = false;
document.getElementById('lnameError').classList.add('error-msg');
document.getElementById('lnameError').style.display = 'block';
document.getElementById('lnameError').textContent = 'Invalid Name!';
} else {
document.getElementById('lnameError').style.display = 'none';
}
// Email validation
const email = document.getElementById('email').value;
const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
if (!emailRegex.test(email)) {
isValid = false;
document.getElementById('emailError').classList.add('error-msg');
document.getElementById('emailError').style.display = 'block';
document.getElementById('emailError').textContent = 'Invalid format!';
} else {
document.getElementById('emailError').style.display = 'none';
}
// Message validation
const msg = document.getElementById('msg').value;
const msgError = document.getElementById('msgError');
msgError.textContent = '';
if (msg.length < 15) {
isValid = false;
msgError.textContent = 'Please add more text';
msgError.classList.add('error-msg');
msgError.style.display = 'block';
} else if (msg.length > 50) {
isValid = false;
msgError.textContent = 'Please reduce the text';
msgError.classList.add('error-msg');
msgError.style.display = 'block';
} else {
msgError.style.display = 'none';
}
if (isValid) {
alert('Form submitted successfully!');
document.getElementById('myForm').reset();
}
});
// responsiveness set