mirror of
https://github.com/kataras/iris.git
synced 2025-01-24 11:11:03 +01:00
9f85b74fc9
Former-commit-id: da4f38eb9034daa49446df3ee529423b98f9b331
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>
|