JSFiddle - React, Tailwind, and code Playground

by Shree Khanal

HTML

<div id="userPanelDlg" >
 <div class="input -clearfix" >               
  <p>User</p><input name="username"  type="text" >
  <p>Pass</p><input name="password" type="text" >             
 </div>
</div>

JavaScript

$("#userPanelDlg").dialog({
        resizable : false,
        height : 'auto',
        width : 'auto',
        modal : true,           
        buttons : {
            "Ok" : function() {
                $(this).dialog("close");
            }
        }
    });