-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
68 lines (63 loc) · 1.92 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="icons/favicon.ico" />
<link rel="stylesheet" href="css/bulma.css" />
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link rel="stylesheet" href="css/presentationStyle.css" />
<script src="scripts/jquery-3.5.1.min.js"></script>
<script src="scripts/presentationStyle.js"></script>
<title>32feet.NET - Personal Area Networking for .NET - Search</title>
</head>
<body>
<section id="MainSection" class="section p-0">
<div class="pageHeader level mb-2 pt-2 pb-2 pl-5 pr-5">
<div id="TitleContainer" class="level-left">
<div id="DocumentationTitle" class="level-item">
32feet.NET - Personal Area Networking for .NET - Search
</div>
</div>
</div>
</section>
<div class="columns">
<div id="SearchContainer" class="content column is-centered">
<form id="SearchForm" action="#" onsubmit=PerformSearch(); return false;">
<div class="field">
<div class="control has-icons-left">
<input id="txtSearchText" class="input" type="text" size="50" maxlength="200" placeholder="Search" />
<span class="icon is-small is-left">
<i class="fa fa-search"></i>
</span>
<button id="SearchButton" type="submit" class="is-hidden"></button>
</div>
</div>
<div class="field">
<div class="control">
<input id="chkSortByTitle" type="checkbox" onclick="PerformSearch();" />
<label for="chkSortByTitle">Sort by title</label>
</div>
</div>
</form>
</div>
</div>
<div class="columns">
<div class="content column is-centered">
<br />
<div id="searchResults">
</div>
</div>
</div>
<div class="columns">
<div class="content column is-centered">
<p>
<a href="html/R_Project_32feet_NET.htm">Back</a>
</p>
</div>
</div>
<script>
OnSearchPageLoad();
</script>
</body>
</html>