-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsearch.php
More file actions
56 lines (53 loc) · 2.63 KB
/
Copy pathsearch.php
File metadata and controls
56 lines (53 loc) · 2.63 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
56
<div class="container">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="<?php echo $basePath; ?>/">Knowledge Base</a></li>
<li class="breadcrumb-item active" aria-current="page">Search</li>
</ol>
<div class="row justify-content-center">
<div class="col-lg-8">
<header class="text-center mb-5">
<div class="mb-4">
<i class="bi bi-search display-1 text-primary"></i>
</div>
<h1 class="mb-3">Search Knowledge Base</h1>
<p class="lead text-muted">Find articles and categories quickly</p>
</header>
<main>
<form action="<?php echo $basePath; ?>/search" method="POST">
<div class="card shadow-sm">
<div class="card-body p-4">
<div class="input-group input-group-lg">
<span class="input-group-text bg-light border-end-0">
<i class="bi bi-search text-muted"></i>
</span>
<input type="text"
class="form-control border-start-0 ps-0"
id="query"
name="query"
placeholder="Enter your search terms..."
required
autocomplete="off">
<button type="submit" class="btn btn-primary px-4">
Search
</button>
</div>
<div class="mt-3">
<small class="text-muted">
<i class="bi bi-info-circle me-1"></i>
Search through articles and categories to find what you're looking for
</small>
</div>
</div>
</div>
</form>
<div class="mt-4 text-center">
<small class="text-muted">
<i class="bi bi-lightbulb me-1"></i>
<strong>Tip:</strong> Try searching for keywords, topics, or browse by
<a href="<?php echo $basePath; ?>/" class="text-decoration-none">categories</a>
</small>
</div>
</main>
</div>
</div>
</div>