JSFiddle - React, Tailwind, and code Playground
by Ekul
HTML
<h3>
Login = Max
<br />
Password = 1111
</h3>
<script type="text/javascript">
var ulog = prompt("Login","");
var upass = prompt("Password","");
if (ulog === "Max" && upass ==="1111") alert ("Correct Login and Password");
else alert ("Wrong input");
</script>