http://php.flashwebhost.com/annie/login.php

Code:
 <?php

if (isset($_GET['login'])) {
    echo '<h1> Login Successful!!</h1>';
    echo '<br>';
    echo '<pre>';
    print_r($_GET);
    echo '</pre>';
} 
else {
    echo '
<html>
    <body>

    <h1>Customer Login</h1>
    <p>All the Power. Even more convenience</p>
   <form method="GET" action="login.php">
    Enter Username : <input name="username" type="text"><br>
    Enter Password : <input name="password" type="text"><br>
     <button type="submit" name="login"> LOG IN!</button>
    </form>
    </body>
    </html>
    '; }