Hello I Hope You Can Help Me.
I'm new to PHP brought some books did what it says but still cant find the errors on it.

heres what i got

This is on Index.php
Code:
<Form Action="Process.php" Method="Post" ID="Login">
<TR>
    <TD><span class="LGStyle">Username</span><br /></TD>
	<TD><Input Name="User" Type="Text" class="LGStyle"/>
    <br /></TD>
    </TR>
    <TR>
    <TD><span class="LGStyle">Password</span></TD>
	<TD><br>
	<Input Name="Pass" Type="Text" class="LGStyle"/>
    <br /></TD>
    </TR>
    </TR>
	<Input Type="Submit" Name="LG" Value="Login" Class="LGStyle"/>
</Form>
And this on Process.php

Code:
<?PHP
If (($_GET["User"] == "Admin") && ($_Get["Pass"] == "ADPass")) {
Echo "Login Compelted";
Else {
Echo "Login Failed";
	}
}
?>
Can someone please help me with this