mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 19:21:03 +01:00
20 lines
479 B
HTML
20 lines
479 B
HTML
|
<!DOCTYPE html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
</head>
|
||
|
<body>
|
||
|
<form action="/form_action" method="post">
|
||
|
<input type="text" name="Username" /> <br /> <input type="text"
|
||
|
name="Mail" /><br /> <select multiple="multiple" name="mydata">
|
||
|
<option value='one'>One</option>
|
||
|
<option value='two'>Two</option>
|
||
|
<option value='three'>Three</option>
|
||
|
<option value='four'>Four</option>
|
||
|
</select>
|
||
|
<hr />
|
||
|
<input type="submit" value="Send data" />
|
||
|
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|