blob: 5d1b02448196be5eaea022d823c73466f164f3f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<html>
<head>
<title> ChromeFrame form submit test(GET method) </title>
</head>
<body>
<br />
<form name="login" method="get" action="action.html">
<table width="90%" border="0" align="center" cellpadding="4"
cellspacing="0" class="form-text">
<tr>
<td>field 1</td>
<td><input type="text" name="field1" value="a"></td>
</tr>
<tr>
<td>field 2</td>
<td><input type="text" name="field2" value="b"></td>
</tr>
</table>
<br />
<p style="margin-left: 28px">
<input id="submit_button" name="submit" type="submit" value="Submit">
</p>
</form>
<br />
</body>
</html>
|