JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.8/dojo/resources/dojo.css">
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.8/dijit/themes/tundra/tundra.css">
<div id="password"></div>

JavaScript

require([
    "dijit/form/ValidationTextBox"
],
function(ValidationTextBox){
   new ValidationTextBox({
       type:'password'
   }, 'password');
});