mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
ed45c77be5
Former-commit-id: ed635ee95de7160cde11eaabc0c1dcb0e460a620
23 lines
529 B
HTML
23 lines
529 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
<form action="/form_action" method="post">
|
|
Username: <input type="text" name="Username" /> <br />
|
|
Mail: <input type="text" name="Mail" /> <br />
|
|
Select one or more: <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>
|