-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearch_form.html
executable file
·34 lines (30 loc) · 1.07 KB
/
search_form.html
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
28
29
30
31
32
33
34
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Perlfect Search 3.37</title>
</head>
<body bgcolor="white" text="black" link="blue" alink="red" vlink="purple">
<h2><a href="http://perlfect.com/freescripts/search/">Perlfect Search 3.37</a></h2>
<form action="/cgi-bin/perlfect/search/search.pl" method="get">
<input type="hidden" name="p" value="1" />
<input type="hidden" name="lang" value="en" />
<input type="hidden" name="include" value="" />
<input type="hidden" name="exclude" value="" />
<input type="hidden" name="penalty" value="0" />
<select name="mode">
<option value="all">Match ALL words</option>
<option value="any">Match ANY word</option>
</select>
<input type="text" name="q" /><input type="submit" value="Search" />
</form>
<script language="javascript1.1" type="text/javascript">
<!--
if( document.forms[0].q ) {
document.forms[0].q.focus();
document.forms[0].q.select();
}
// -->
</script>
</body>
</html>