-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
36 lines (31 loc) · 1.59 KB
/
search.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
35
36
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>DVD</title>
<script language="javascript" src="js/functions.js" ></script>
<script language="javascript" src="js/frames.js"></script>
<script language="javascript" src="js/languages.js"></script>
<link rel="stylesheet" type="text/css" href="css/search.css" />
</head>
<body onload="firstLoad();">
<form id="search" name="search" method="post" action="#" onsubmit="return checkSearchHTML();">
<table style="vertical-align:middle">
<tr>
<td width="84px" ><label id="find_lbl">Recherche:</label></td>
<td width="200px"><input type="text" name="search_txt" id="search_txt" class="txt_search" /></td>
<td width="145px" valign="top" height="23px">
<input type="submit" name="search" id="search_btt" onclick="return checkSearchHTML();" value="rechercher" />
</td>
</tr>
</table>
<input type="radio" name="search_char" value="caracter" onclick="checkradio(this);" checked="checked"/>
<label id="char_lbl" class="table_search">caractère</label>
<input type="radio" name="search_table" value="table" onclick="checkradio(this);"/>
<label id="table_lbl">table analytique</label>
<br />
<br />
<div id="gridWithScroll" onscroll="SetDivPosition();"></div>
</form>
</body>
</html>