HTML

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

<html>

<head>

<meta charset="utf-8">

<link href="Main.css" rel="stylesheet"/>

<script src="jquery-3.3.1.min.js"></script>

<script type="text/javascript">

var loader;

function loadNow(opacity){

if(opacity <= 0){

displayContent();

else{

loader.style.opacity=opacity;

window.setTimeout(function(){

loadNow(opacity - 0.05)

},100);

}
}

function displayContent(){

loader.style.display = 'none';

document.getElementById('content').style.display = 'block';

document.addEventListener("DOMContentLoaded", function(){

loader= document.getElementById('loader');

loadNow(3.3);

});

</script>

<script src="JQUERY%20Main.js"></script>

<script src="jquery.vide.js"></script>
</head>

<body data-vide-bg="VENOM - Official Trailer (HD)_8">

<div id="loader"></div>

<div id="box">

<div id="main"></div>

<div id="loginform">

<h1>LOGIN</h1>

<input type="email" placeholder="Email"/><br>

<input type="password" placeholder="Password"/><br>

<button>LOGIN</button>

</div>

<div id="signupform">

<h1>SIGN UP</h1>

<input type="text" placeholder="Full Name"/><br>

<input type="email" placeholder="Email"/><br>

<input type="password" placeholder="Password"/><br>

<button>SIGN UP</button>

</div>

<div id="login_msg">Have an account?</div>

<div id="signup_msg">Don't have an account?</div>

<button id="login_btn">LOGIN</button>

<button id="signup_btn">SIGN UP</button>

</div>

</body>

</html>

You might also like