1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/vweb/file_upload/submit.html

13 lines
147 B
HTML
Raw Normal View History

<meta charset="utf-8">
Submitted form info:
@for name, value in form_data
<h2>name: @name</h2>
<p>value: @value</p>
@end
<a href="/">Back</a>