You are on page 1of 2

<!

DOCTYPE html>
<html>
<head>
<title>
CLOUD IT
</title>

</head>
<body>
<div id="main">
<h1 id="domain">
WELCOME TO CLOUD IT
</h1>
login:<br><input id="login" type="text" ></br>
password:<br><input id="pass" type="password" ></br>
<button type="button" onclick="myFunction()">
SIGN in
</button>
<p id="done"></p>
<script>
function myFunction()
{
var x,y,don;
x=document.getElementById("login").value;
y=document.getElementById("pass").value;
savedToParse(x,y);

don= "complete";
document.getElementById("done").innerHTML= don;
}
fucntion savedToParse(x,y)
{

}
</script>
</div>
</body>
</html>

You might also like