1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14

content / test / data / form_that_posts_to_echoall.html [blame]

<!DOCTYPE html>
<html>
  <head></head>
  <body>
    <form id="form" method="POST" action="/echoall">
      <input type="text" name="text" value="value">
      <input type="submit">
    </form>
    <form id="file-form" method="POST" action="/echoall" enctype="multipart/form-data">
      <input type="file" id="file" name="file">
      <input type="submit">
    </form>
  </body>
</html>