| Index: src/site/docs/tutorials/forms/examples/search_form/web/search_form.html
|
| diff --git a/src/site/docs/tutorials/forms/examples/search_form/web/search_form.html b/src/site/docs/tutorials/forms/examples/search_form/web/search_form.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..62754e66efece13487b6ba0b1cacc077e80874d3
|
| --- /dev/null
|
| +++ b/src/site/docs/tutorials/forms/examples/search_form/web/search_form.html
|
| @@ -0,0 +1,27 @@
|
| +<!DOCTYPE html>
|
| +
|
| +<html>
|
| + <head>
|
| + <meta charset="utf-8">
|
| + <title>Search for it</title>
|
| + <link rel="stylesheet" href="search_form.css">
|
| +
|
| + </head>
|
| + <body>
|
| + <h1>Search dartlang.org</h1>
|
| +
|
| + <div class="sample_container_id">
|
| + <form action="http://www.google.com/search"
|
| + method="GET"
|
| + target="_blank">
|
| + <input type="text" name="q"
|
| + value="Cookbook" size="31" maxlength="255">
|
| + <input type="submit" value="Google Search">
|
| + <label>
|
| + <input type="checkbox" name="sitesearch"
|
| + value="dartlang.org" checked> Search dartlang.org<br>
|
| + </label>
|
| + </form>
|
| + </div>
|
| + </body>
|
| +</html>
|
|
|