From 6dc2d049dee5458ebdf666ea8bf85911f3156a14 Mon Sep 17 00:00:00 2001 From: Kathleen Caroline Coutinho Benedicto Date: Thu, 19 Jan 2023 23:19:39 +0000 Subject: [PATCH] =?UTF-8?q?atualiza=C3=A7=C3=A3o=20Tcc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- anderson.html | 190 +++++++--------------------- css/main.css | 2 +- images/anderson.jpg | Bin 0 -> 106443 bytes images/aws.png | Bin 0 -> 35185 bytes images/capa.jpeg | Bin 0 -> 80819 bytes images/capa.png | Bin 590735 -> 35185 bytes images/marcelo.jpg | Bin 0 -> 73882 bytes images/reference-image-1.jpg | Bin 78459 -> 0 bytes images/simbolo-aws.png | Bin 0 -> 2093 bytes index.html | 11 +- kathleen.html | 68 +++++++++-- marcelo.html | 231 ++++++----------------------------- miguel.html | 13 +- scripts/main.js | 19 +++ 14 files changed, 172 insertions(+), 362 deletions(-) create mode 100644 images/anderson.jpg create mode 100644 images/aws.png create mode 100644 images/capa.jpeg create mode 100644 images/marcelo.jpg delete mode 100644 images/reference-image-1.jpg create mode 100644 images/simbolo-aws.png diff --git a/anderson.html b/anderson.html index fa12ee6..b31243e 100644 --- a/anderson.html +++ b/anderson.html @@ -28,7 +28,7 @@
-

+

@@ -228,7 +273,7 @@

Contact

- +
@@ -266,5 +311,6 @@

Contact

+ \ No newline at end of file diff --git a/marcelo.html b/marcelo.html index fa12ee6..a301bf1 100644 --- a/marcelo.html +++ b/marcelo.html @@ -28,7 +28,7 @@
-

+

- +
@@ -235,5 +235,6 @@

Contact

+ \ No newline at end of file diff --git a/scripts/main.js b/scripts/main.js index 35f12cf..4311fc6 100644 --- a/scripts/main.js +++ b/scripts/main.js @@ -5,3 +5,22 @@ AOS.init({ }); // Add your javascript here +function sendEmail(){ + swal({ + title: "Quer continuar?", + text: "Você vai enviar um e-mail para contratação!", + icon: "warning", + buttons: true, + dangerMode: true, + }) + .then((willDelete) => { + if (willDelete) { + swal("Banco de Currículos", "E-mail enviado com sucesso!", "success"); + document.getElementById('name').value = ''; + document.getElementById('email').value = ''; + document.getElementById('message').value = ''; + } else { + swal("Your imaginary file is safe!"); + } + }); +}