JSFiddle - React, Tailwind, and code Playground
by Joe Pigott
HTML
Username:
<input id="input" type='text' name='uname'>
<br />Password:
<input id="input2" type='password' name="pname">
<br />
<button type="submit" onclick='redirect()' id="button">Submit</button>
JavaScript
function redirect() {
var i = document.getElementById('input').value;
var i2 = document.getElementById('input2').value;
if (i === "Shmoyojoe" && i2 === "shmeeshmoo") {
document.location = 'http://jsfiddle.net/Shmoyojoe/DrTBy/embedded/result/';
}
}