Hi There,
I am wondering how I can add an input text box to the jimu message box in WAB. Right now, I am using a prompt in javascript to ask users for a simple passcode in an if statement like this:
var person = prompt("Passcode:", "")
if (person == "acre555" ) {
} else {
var person = alert("A valid passcode is required to use export resources")
This totally works but is not very elengant. I got the jimu message working but I dont see any options to add a simple input box. Is this possible? Thanks!!