blob: 629412f88bfd4868365e08716ec2a21218775ba2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Autofill Crowdsourcing Test</title>
</head>
<body>
<form action="http://www.google.com/" method="post" id="frmsubmit">
<label for="fn">Fn:</label> <input type="text" id="fn"/><br/>
<label for="ln">Ln:</label> <input type="text" id="ln"/><br/>
<label for="em">Em:</label> <input type="text" id="em"/><br/>
<input type="submit" value="send">
</form>
</body>
</html>
|