JSFiddle - React, Tailwind, and code Playground

by SuchitraIyer

HTML

<!DOCTYPE html>

   <title>Welcome</title>

<style>
  /*  body
    { background-image:url("loadingimage.jpg");
    }*/
</style>

<body>
  <p>Enter your Login Credentials here!</p>
    <form id="target" method="post"> 
        User  ID    : <input id="uid" type="text" name="uid" />	<br>          <br>
        Password  : <input id="pwd" type="password" name="pwd" />
        <br>
	    <input id="Submit1" type="submit" value="LOGIN"/> 		
        <br><br>
        <input id="Button" type="button" value="show graphs" onclick="btntest_onclick()" />	
      
	</form>
 <img class="logo" src="http://10.2.9.208:8081/loadingimage.jpg" alt="My_Logo">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>

    <script type="text/javascript">
    
       
        function btntest_onclick() {

            setTimeout(function () { //on pressing show graphs button
            
                window.location.href = "/../";
            }, 500);
        }
</script>


</body>
</html>