forked from Amit-singh-05/Mailtrap-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPAYMENT Method.js
26 lines (22 loc) · 1.04 KB
/
PAYMENT Method.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
let updatediv = document.getElementById("updatediv")
document.getElementById("hi_button").addEventListener("click",savecard)
savecard()
function savecard() {
let name = document.querySelector("#hi_card_name").value
let number = document.querySelector("#hi_card_number").value
if (number.length == 16) {
updatediv.innerText = "Your card has been successfully saved"
updatediv.style.paddingTop = "15px"
updatediv.style.paddingBottom = "15px"
updatediv.style.textAlign = "center"
} if(number.length<16 && number.length>0) {
document.getElementById("hi_msg").innerText="Invalid card number"
updatediv.innerText = "Your card has not been successfully saved, Please try again!"
updatediv.style.paddingTop = "15px"
updatediv.style.paddingBottom = "15px"
updatediv.style.textAlign = "center"
updatediv.style.backgroundColor = "rgb(254, 154, 154)"
updatediv.style.color="red"
}
// console.log(num)
}