1<!-- 2/* 3** 4** Copyright 2011, The Android Open Source Project 5** 6** Licensed under the Apache License, Version 2.0 (the "License"); 7** you may not use this file except in compliance with the License. 8** You may obtain a copy of the License at 9** 10** http://www.apache.org/licenses/LICENSE-2.0 11** 12** Unless required by applicable law or agreed to in writing, software 13** distributed under the License is distributed on an "AS IS" BASIS, 14** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15** See the License for the specific language governing permissions and 16** limitations under the License. 17*/ 18--> 19 20<html> 21 <head> 22 <script type="text/javascript"> 23 (function(d, name) { 24 var css = document.createElement('link'); 25 css.rel = 'stylesheet'; 26 css.href = name + ".css"; 27 d.head.appendChild(css); 28 })(document, theme.name()); 29 </script> 30 </head> 31 <body> 32 <div 33 class="input" 34 style="margin-top:-8px" 35 > 36 <input 37 type="text" 38 size="80%" 39 name="webtext" 40 placeholder="<input type="text"/>" /> 41 </div> 42 <div class="input"> 43 <input 44 type="email" 45 size="80%" 46 name="webemail" 47 placeholder="<input type="email"/>" /> 48 </div> 49 <div class="input"> 50 <input 51 type="password" 52 size="80%" 53 name="webpassword" 54 placeholder="<input type="password"/>" /> 55 </div> 56 <div class="input"> 57 <input 58 type="url" 59 size="80%" 60 name="weburl" 61 placeholder="<input type="url"/>" /> 62 </div> 63 <div class="input"> 64 <input 65 type="number" 66 size="80%" 67 name="webnumber" 68 placeholder="<input type="number"/>" /> 69 </div> 70 <div class="input"> 71 <input 72 type="tel" 73 size="80%" 74 name="webtel" 75 placeholder="<input type="tel"/>" /> 76 </div> 77 <div class="input"> 78 <input 79 type="search" 80 size="80%" 81 name="websearch" 82 placeholder="<input type="search"/>" /> 83 </div> 84 <div 85 class="input" 86 style="margin-bottom:-4px" 87 > 88 <textarea 89 rows="2" 90 cols="80%" 91 name="webtextarea" 92 placeholder="<textarea></textarea>" 93 ></textarea> 94 </div> 95 </body> 96</html> 97