1
0
Fork 0
mirror of https://github.com/yweber/lodel2.git synced 2026-01-08 16:22:14 +01:00
lodel2_mirror/plugins/webui/templates/test.html
2016-06-30 15:56:12 +02:00

25 lines
No EOL
944 B
HTML

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