Habe mir einen php Login Script gemacht und brauche jetzt jemanden der meinen Script verbessert/korrigiert.Ich habe irgend wo eine Fehler gemacht und weis nicht welchen

Ich bitte um schnelle Hilfe ?!
mfg,Buckman
index.html
login.php


Ich bitte um schnelle Hilfe ?!

mfg,Buckman
index.html
HTML:
<!DOCTYPE html>
<html>
<head>
<title>Test - Login</title>
<link href="main.css" type="text/css" rel="stylesheet" />
<meta name="kaywords" content="">
<meta name="description" content="">
</head>
<body>
<div id="loginform">
<form action="login.php" method="post">
<p>Benutzername: <input type="text" name="user"></p>
<p>Password: <input type="password" name="pass"></p>
<input type="submit" name"login" value="Login">
<input type="reset" value="Reset">
</form>
</div>
</body>
</html>
login.php
PHP:
<?php
$benutzer = $_POST["user"];
$password = $_POST["pass"];
$loginbutton = $_POST["login"];
if ($loginbutton)
{
if ($benutzer AND $password)
{
if ($benutzer=="admin")
{
if ($paasowrd=="1234")
{
echo "sie haben sich erfolgreich eingeloggt !";
}
else
echo "Das password dieses Benutzers ist Falsch!";
}
else
echo "Der Benutzername ist nicht vorhanden!";
}
else
echo "Bitte Füllen Sie alle Felder aus !";
}
?>