fork(5) download
  1. <head>
  2. <meta charset="UTF-8">
  3. <title>Title</title>
  4. </head>
  5.  
  6. <body>
  7.  
  8. <table>
  9. <form name="form1" action="checklogin.php" method="post">
  10. <tr><td>Username:</td> <td><input type="text" name="username" id="username"></td></tr>
  11. <tr><td>Password:</td> <td><input type="password" name="password" id="password"></td></tr>
  12. <tr><td><input type="submit" name="submit" id="submit" value="Login"></td></tr>
  13. </form>
  14. </table>
  15.  
  16.  
  17. </center>
  18.  
  19. </body>
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
<head>
    <meta charset="UTF-8">
	<title>Title</title>
</head>

<body>

<table>
<form name="form1" action="checklogin.php" method="post">
<tr><td>Username:</td> <td><input type="text" name="username" id="username"></td></tr>
<tr><td>Password:</td> <td><input type="password" name="password" id="password"></td></tr>
<tr><td><input type="submit" name="submit" id="submit" value="Login"></td></tr>
</form>
</table>


</center>

</body>