input.html 867 B

1234567891011121314151617181920212223242526
  1. <!-- Code by Sunit Kumar Nandi -->
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8" script=>
  6. <link rel="stylesheet" type="text/css" href="./style.css">
  7. </head>
  8. <body>
  9. <form name="form1" method="post" target="output" action="output.php?saving=1">
  10. <br/><br/>
  11. <textarea name="data" cols="80" rows="10" placeholder="Write your program here" spellcheck="false"></textarea>
  12. <br/><br/><br/>
  13. <input type="text" name="stdin" autocomplete="on" placeholder="Standard input" wrap="hard">
  14. <br/><br/>
  15. <input type="text" name="args" autocomplete="on" placeholder="Command-line arguments">
  16. <br/><hr/><br/>
  17. <button type="submit"> &#9654; Run</button>
  18. <div style="padding:30px;"><a href="#" class="button">&#9654; Run</a></div>
  19. </form>
  20. <br/>
  21. <br/>
  22. <a href="textinput.php" target="output">Click here to submit text file input</a>
  23. </body>
  24. </html>