<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Login Form</title>

<link href="../../css/style.css" rel="stylesheet" type="text/css" />



</head>
<body>


<div id="wrapper">

	
    <div class="user-icon"></div>
    <div class="pass-icon"></div>
    


<form name="loginform" class="form" action="validasi" method="post">

	
    <div class="header">
    <h1>Login</h1>
    </div>
	
	
    <div class="content">
    <p>Email</p>
	<input name="username" type="text" class="input" value="Username" onfocus="{this.value = '';}" onblur="if (this.value == '') {this.value = 'Username';}"/> <br /><br />
    <p>Password</p>
    <input name="password" type="password" class="input" value="Password" onfocus="{this.value = '';}" onblur="if (this.value == '') {this.value = 'Password'}" />
    </div>
    
    
    
    <div class="footer">
   <input type="submit" name="submit" value="Login" class="button" />
    </div>
   

</form>


</div>


</body>
</html>