| OLD | NEW |
| 1 --- | 1 --- |
| 2 layout: default | 2 layout: default |
| 3 title: "Target 10: Get Input from a Form" | 3 title: "Target 10: Get Input from a Form" |
| 4 description: "Using HTML forms and input elements to send data to a server" | 4 description: "Using HTML forms and input elements to send data to a server" |
| 5 has-permalinks: true | 5 has-permalinks: true |
| 6 tutorial: | 6 tutorial: |
| 7 id: forms | 7 id: forms |
| 8 --- | 8 --- |
| 9 | 9 |
| 10 {% capture whats_the_point %} | 10 {% capture whats_the_point %} |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 <p> | 24 <p> |
| 25 Get the source code for the samples featured in this target:</p> | 25 Get the source code for the samples featured in this target:</p> |
| 26 | 26 |
| 27 <ul> | 27 <ul> |
| 28 <li> | 28 <li> |
| 29 <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web
/target10/search_form" | 29 <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web
/target10/search_form" |
| 30 target="_blank">search_form</a> | 30 target="_blank">search_form</a> |
| 31 </li> | 31 </li> |
| 32 <li> | 32 <li> |
| 33 <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web
/target10/slambook" | 33 <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web
/target10/slambook" |
| 34 target="_blank">slambook</a> | 34 target="_blank">slambook</a> (web_ui) |
| 35 </li> |
| 36 <li> |
| 37 <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web
/target10-polymer/slambook" |
| 38 target="_blank">slambook</a> (polymer) |
| 35 </li> | 39 </li> |
| 36 <li> | 40 <li> |
| 37 <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web
/target10/multiselect" | 41 <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web
/target10/multiselect" |
| 38 target="_blank">multiselect</a> | 42 target="_blank">multiselect</a> |
| 39 </li> | 43 </li> |
| 40 </ul> | 44 </ul> |
| 41 | 45 |
| 42 {% endcapture %} | 46 {% endcapture %} |
| 43 | 47 |
| 44 {% capture content %} | 48 {% capture content %} |
| (...skipping 946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 991 </a> | 995 </a> |
| 992 </div> | 996 </div> |
| 993 <div class="span3"> | 997 <div class="span3"> |
| 994 <a href="/docs/tutorials/indexeddb/" class="pull-right">Use IndexedDB <i class
="icon-chevron-right"> </i> </a> | 998 <a href="/docs/tutorials/indexeddb/" class="pull-right">Use IndexedDB <i class
="icon-chevron-right"> </i> </a> |
| 995 </div> | 999 </div> |
| 996 </div> | 1000 </div> |
| 997 | 1001 |
| 998 {% endcapture %} | 1002 {% endcapture %} |
| 999 | 1003 |
| 1000 {% include tutorial.html %} | 1004 {% include tutorial.html %} |
| OLD | NEW |