Device Sync

This commit is contained in:
2025-12-18 22:14:29 -05:00
38 changed files with 3055 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
<<<<<<< HEAD
document.getElementById("buttonLabel").style.display = "none";
function testButton() {
@@ -16,4 +17,24 @@ function repeatInfo() {
const email = document.getElementById("email").value;
const phone = Number(document.getElementById("phone").value);
formLabel.innerHTML += `${firstName} ${lastName}, ${email}, ${phone}`
=======
document.getElementById("buttonLabel").style.display = "none";
function testButton() {
const buttonLabel = document.getElementById("buttonLabel");
if (buttonLabel.style.display === "block") {
buttonLabel.style.display = "none";
} else {
buttonLabel.style.display = "block";
}
}
function repeatInfo() {
const formLabel = document.getElementById("formLabel");
const firstName = document.getElementById("firstName").value;
const lastName = document.getElementById("lastName").value;
const email = document.getElementById("email").value;
const phone = Number(document.getElementById("phone").value);
formLabel.innerHTML += `${firstName} ${lastName}, ${email}, ${phone}`
>>>>>>> a2ad5843006c62096be10203d3f91faa39f365fb
}