You are going to need a server-side language to handle the credentials. While you can run a simple validation with HTML5 on the email (or username) field, you are going to need a server-side language such as PHP in order to handle those credentials. You might also want to encrypt the passwords to make your login system more secure, using something like md5($password);.
Example
HTML Form
<div id="main" role="main">
<form method="post" action="#" >
<fieldset>
<label for="username">Username <span class="ico"><img src="img/user.png" alt="Username Icon" border="0" /></span></label>
<input type="text" name="username" id="username" required autofocus>
<label for="password">Password <span class="ico"><img src="img/pass.png" alt="Password Icon" border="0" /></span></label>
<input type="password" name="password" id="password" required>
</fieldset>
<fieldset>
<span class="password"><a href="#">Forgot Password</a></span>
<button type=submit>>> GO</button>
</fieldset>
</form>
</div>
SQL Members Table
CREATE TABLE `members` (
`id` int(4) NOT NULL auto_increment,
`username` varchar(65) NOT NULL default '',
`password` varchar(65) NOT NULL default '',
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;
--
-- Dumping data for table `members`
--
INSERT INTO `members` VALUES (1, 'john', '1234');
PHP Login Check
<?php
$host="localhost"; // Host name
$username=""; // Mysql username
$password=""; // Mysql password
$db_name="test"; // Database name
$tbl_name="members"; // Table name
// Connect to server and select databse.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");
// username and password sent from form
$myusername=$_POST['myusername'];
$mypassword=$_POST['mypassword'];
// To protect MySQL injection (more detail about MySQL injection)
$myusername = stripslashes($myusername);
$mypassword = stripslashes($mypassword);
$myusername = mysql_real_escape_string($myusername);
$mypassword = mysql_real_escape_string($mypassword);
$sql="SELECT * FROM $tbl_name WHERE username='$myusername' and password='$mypassword'";
$result=mysql_query($sql);
// Mysql_num_row is counting table row
$count=mysql_num_rows($result);
// If result matched $myusername and $mypassword, table row must be 1 row
if($count==1){
// Register $myusername, $mypassword and redirect to file "login_success.php"
session_register("myusername");
session_register("mypassword");
header("location:login_success.php");
}
else {
echo "Wrong Username or Password";
}
?>
PHP Login Successful
<?
session_start();
if(!session_is_registered(myusername)){
header("location:main_login.php");
}
?>
<html>
<body>
Login Successful
</body>
</html>
PHP Logout
<?
session_start();
session_destroy();
?>