Is it possible to assign the "password" type to the Google Apps Script inputBox so the text doesn't show?
The following is working just fine, but the input field is a simple textbox and displays the text rather than "••••••••":
Browser.inputBox('Please enter your password');
I have a Google Sheet with an associated script that automatically populates some cells with information retrieved from an external API. The API requires simple authentication so that's why I'm prompting the user for their username and password (this is for an internal tool so there are no issues with asking for the password, it's not being stored or anything).
<input type="password" name="thePassword">Link to password attribute information