Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test.html 944B

12345678910111213141516171819202122232425
  1. {% import "components/components.html" as components %}
  2. <html>
  3. <head></head>
  4. <body>
  5. {{ components.textarea('test', value='ceci est un test', rows=10, cols=20) }}<br/>
  6. URL arg : id = {{ id }}<br />
  7. GET values :<br />
  8. <ul>
  9. {% for argument_name, argument_value in params.items() %}
  10. <li>{{argument_name}} = {{ argument_value }}</li>
  11. {% endfor %}
  12. </ul>
  13. <form action="http://localhost:9090/admin?r=1&rand[]=7&rand[]=5" method="POST" enctype="multipart/form-data">
  14. <input type="text" name="re[]" value="3"><br />
  15. <input type="text" name="re[]" value="1"><br />
  16. <input type="text" name="val" value="8"><br />
  17. <input type="file" name="myfile1"><br />
  18. <input type="file" name="myfile2"><br />
  19. <input type="file" name="myfiles[]"><br />
  20. <input type="file" name="myfiles[]"><br />
  21. <input type="submit" value="tester"><br />
  22. </form>
  23. </body>
  24. </html>