-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearch.html
76 lines (70 loc) · 2.44 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
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="" />
<title>HatchThink | Tokenize Your IP</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1"
crossorigin="anonymous"
/>
<link href="hatchthink.css" rel="stylesheet" />
</head>
<body class="d-flex h-100 text-center text-white bg-dark">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="mb-auto">
<div>
<h3 class="float-md-start mb-0">HatchThink</h3>
<nav class="nav nav-masthead justify-content-center float-md-end">
<a class="nav-link" href="index.html">Home</a>
<a class="nav-link" href="submit.html">Submit</a>
<a class="nav-link" href="collab.html">Collaborate</a>
<a class="nav-link active" aria-current="page" href="search.html"
>Search</a
>
<a class="nav-link" href="invest.html">Invest</a>
<a class="nav-link" href="#">About</a>
</nav>
</div>
</header>
<main class="px-3">
<h1>Search</h1>
<br />
<p class="lead">Begin Your Search Here!</p>
<!-- <form class="form-inline" action="#"> -->
<div class="row">
<div class="col-8">
<input
type="text"
id="description_input"
placeholder="Idea Description"
class="form-control form-control-sm"
/>
</div>
<div class="col-4">
<button id="idea_search" class="btn btn-sm fw-bold bg-white form-control">
Search
</button>
</div>
</div>
<!-- </form> -->
<br />
<br />
<div class="row row-cols-3 g-4" id="results_text"></div>
</main>
<footer class="mt-auto text-white-50 fs-6">
<p>
<small>
tmplt by
<a href="https://twitter.com/mdo" class="text-white">@mdo</a>
</small>
</p>
</footer>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="search.js"></script>
</body>
</html>