-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (55 loc) · 2.19 KB
/
Copy pathindex.html
File metadata and controls
55 lines (55 loc) · 2.19 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="./CSS/stylesheet.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="A development demo of the Duda Search Engine.">
<title>Duda Search Engine</title>
<script src="./JS/functions.js" type="application/javascript"></script>
<script src="./JS/main.js" type="application/javascript"></script>
</head>
<body>
<div class="cardContainer">
<div class="card">
<label class="inputLabel" for="urlInput">Crawl</label>
<span class="inputContainer">
<input id='urlInput' class='textInput' />
</span>
<button id='newSite' class='submit'>New Site</button>
</div>
<div class="card">
<label class="inputLabel" for="searchBar">Search</label>
<span class="inputContainer">
<input id='searchBar' class='textInput' autocomplete="off" />
<div id="suggestionsDropdown" class="dropdown">
<!--<ul id="preSearchSuggestions"></ul>-->
</div>
</span>
<button id='searchButton' class='submit'>Search</button>
</div>
<div class="break"></div>
<div class="card" style="margin-bottom: 50px;">
<div id="titleBar" class="header">
<h4 style="display:inline-block;">Search Results</h4>
<p id="pageMonitor"><i>Page <b id="currentPage">1</b> of <span id="totalPages">1</span></i></p>
</div>
<div id="suggestions" class="hidden">
Showing search results for "<span id="phrase"></span>".
<div id="otherSuggestions"></div>
</div>
<div id="results">
<img id="noResults" src="./CSS/sleeping.svg" alt="sleepy cloud" width="300" height="300">
<h5 id="noResultsText">It's a little quiet here... Try searching for your answers!</h5>
<!--<div id="noResults"></div>-->
<!--<div class="result">
<h6 class="url"></h6>
<h4 class="title"></h4>
<p class="snippet"></p>
</div>-->
</div>
<div id="pageBar"></div>
</div>
</div>
</body>
</html>