JSFiddle - React, Tailwind, and code Playground

by Graham Walters

HTML

<script src="http://mirokoczka.eu/sweetalert/lib/sweet-alert.js"></script>
<link rel="stylesheet" href="http://mirokoczka.eu/sweetalert/lib/sweet-alert.css">

JavaScript

swal({
  type: "prompt",
  title: "Username!",
  text: "Please enter a username:",
  showCancelButton: false,
  promptPlaceholder: "Your awesome username"
}, function(username) {
  swal("Here's a message!", "Your username was: " + username, "success");
});