1234567891011121314151617181920212223242526 |
- <!-- Code by Sunit Kumar Nandi -->
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8" script=>
- <link rel="stylesheet" type="text/css" href="./style.css">
- </head>
- <body>
- <form name="form1" method="post" target="output" action="output.php?saving=1">
- <br/><br/>
- <textarea name="data" cols="80" rows="10" placeholder="Write your program here" spellcheck="false"></textarea>
- <br/><br/><br/>
- <input type="text" name="stdin" autocomplete="on" placeholder="Standard input" wrap="hard">
- <br/><br/>
- <input type="text" name="args" autocomplete="on" placeholder="Command-line arguments">
- <br/><hr/><br/>
- <button type="submit"> ▶ Run</button>
- <div style="padding:30px;"><a href="#" class="button">▶ Run</a></div>
- </form>
- <br/>
- <br/>
- <a href="textinput.php" target="output">Click here to submit text file input</a>
- </body>
- </html>
|