i cant resolve this error,please help on line 25
<html>
<head>
<title>login in form</title>
<link rel="stylesheet" a href="style.css"/>
</head>
<body>
<?php
$host ="localhost";
$user ="root";
$password = "";
$db = "demo";
mysql_connect($host,$user,$password);
mysql_select_db($db);
if(isset($_POST['username'])){
$username = $_POST['username'];
$password = $_POST['password'];
$sql="SELECT * FROM login where user'".$username."'AND pass='".$password."'limit 1 ";
$result = mysql_query($sql);
if(mysql_num_rows($result)==1){
echo "you have sucessfully logged in";
exit();
}else{
echo "you have entered incorrect password";
exit();
}
}
?>
<div class = "container">
<img src="bae.jpg">
<form method = POST action = "#"/>
<b>LOGIN</b>
<div class = "form_input">
<input type = "text" placeholder="enter your username" name ="username" value="" required/>
</div>
<div class="form_input">
<input type = "password" placeholder="enter your password" name="password" value="password" required />
</div>
<input type = "submit" name = "" value = "LOGIN" id="login"/>
</form>
</div>
</body>
</html>