sweetalert2 animation code example
Example 1: sweet alert
swal("Good job!", "You clicked the button!", "success");
Example 2: swal mail
const { value: email } = await Swal.fire({ title: 'Input email address', input: 'email', inputPlaceholder: 'Enter your email address'})if (email) { Swal.fire(`Entered email: ${email}`)}