Try this one :
<!Doctype>
<html>
<head>
<title>
My login page
</title>
</head>
<body>
<h1>Login form</h1>
<form>
<div>
<label>email</label>
<input type="email" name="email"/>
</div>
<div>
<label>password</label>
<input type="password" name="password"/>
</div>
</form>
</body>
</html>