Sweetalert2 tutorial code example
Example 1: sweetalert2
$ npm install sweetalert2
Example 2: sweetalert2
const { value: email } = await Swal.fire({ title: 'Input email address', input: 'email', inputLabel: 'Your email address', inputPlaceholder: 'Enter your email address'})if (email) { Swal.fire(`Entered email: ${email}`)}