fork download
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Login Page</title>
  5. </head>
  6. <body>
  7. <center>
  8. <form method="POST" action="login.php">
  9. <table border="1">
  10. <tr>
  11. <th>Username:</th>
  12. <td><input type="text" name="user"></td>
  13. </tr>
  14. <tr>
  15. <th>Password:</th>
  16. <td><input type="password" name="pass"></td>
  17. </tr>
  18. <tr>
  19. <td colspan="2" align="center">
  20. <input type="submit" value="Submit">
  21. <input type="reset" value="Reset">
  22. </td>
  23. </tr>
  24. </table>
  25. </form>
  26. </center>
  27. </body>
  28. </html>
Success #stdin #stdout 0.03s 25888KB
stdin
Standard input is empty
stdout
<!DOCTYPE html>
<html>
<head>
    <title>Login Page</title>
</head>
<body>
    <center>
        <form method="POST" action="login.php">
            <table border="1">
                <tr>
                    <th>Username:</th>
                    <td><input type="text" name="user"></td>
                </tr>
                <tr>
                    <th>Password:</th>
                    <td><input type="password" name="pass"></td>
                </tr>
                <tr>
                    <td colspan="2" align="center">
                        <input type="submit" value="Submit">
                        <input type="reset" value="Reset">
                    </td>
                </tr>
            </table>
        </form>
    </center>
</body>
</html>