diff --git a/en/index.html b/en/index.html
index 8a9ec2c..15b0698 100644
--- a/en/index.html
+++ b/en/index.html
@@ -34,20 +34,6 @@
-
-
-
@@ -871,7 +857,7 @@
Email:
-
+
@@ -889,7 +875,6 @@
-
@@ -965,7 +950,7 @@
const mailto = `mailto:${email}?subject=${encodeURIComponent(subject)}&body=${encodeURIComponent(body)}`;
- // Tenta abrir o cliente de email
+ // Try to open email client
const link = document.createElement('a');
link.href = mailto;
document.body.appendChild(link);
@@ -975,7 +960,7 @@
const showText = document.getElementById('showEmail');
showText.setAttribute('value',email);
- // Mostra o modal após 1.5 segundos
+ // Show modal after 1.5 seconds
setTimeout(() => {
const modal = new bootstrap.Modal(document.getElementById('emailModal'));
modal.show();
@@ -990,6 +975,13 @@
window.open(url, '_blank');
}
+ function copyEmail() {
+ const emailField = document.getElementById('showEmail');
+ emailField.select();
+ emailField.setSelectionRange(0, 99999);
+ navigator.clipboard.writeText(emailField.value);
+ }
+