blob: daf0fdb731da89ad69d45fba17c0d4ada3380271 [file] [log] [blame]
Yohei Yukawaf97da472018-05-22 10:31:28 -07001<!--
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="&lt;input type=&quot;text&quot;/&gt;" />
41 </div>
42 <div class="input">
43 <input
44 type="email"
45 size="80%"
46 name="webemail"
47 placeholder="&lt;input type=&quot;email&quot;/&gt;" />
48 </div>
49 <div class="input">
50 <input
51 type="password"
52 size="80%"
53 name="webpassword"
54 placeholder="&lt;input type=&quot;password&quot;/&gt;" />
55 </div>
56 <div class="input">
57 <input
58 type="url"
59 size="80%"
60 name="weburl"
61 placeholder="&lt;input type=&quot;url&quot;/&gt;" />
62 </div>
63 <div class="input">
64 <input
65 type="number"
66 size="80%"
67 name="webnumber"
68 placeholder="&lt;input type=&quot;number&quot;/&gt;" />
69 </div>
70 <div class="input">
71 <input
72 type="tel"
73 size="80%"
74 name="webtel"
75 placeholder="&lt;input type=&quot;tel&quot;/&gt;" />
76 </div>
77 <div class="input">
78 <input
79 type="search"
80 size="80%"
81 name="websearch"
82 placeholder="&lt;input type=&quot;search&quot;/&gt;" />
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="&lt;textarea&gt;&lt/textarea&gt;"
93 ></textarea>
94 </div>
95 </body>
96</html>