<SCRIPT LANGUAGE='JavaScript'>
alertify.prompt('Please enter password for authorization', function(evt, value) {
value = md5(value);
if (value != null && value == '$pass') {
alertify
.alert('Success! Shifting to Happy Hour. ', function(){
alertify.message(window.location = `main_2.php`);
});
}else{
alertify
.alert('Invalid Password, Please Try Again.', function(){
alertify.message(window.history.back());
});
}});
</SCRIPT>");
I want to make to prompt to have the text input and ok button only. What will be the easiest way to do this?