-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsearch.html
42 lines (39 loc) · 1.17 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
{% extends "layout.html" %}
{% block body %}
<ul class="nav nav-pills" style= "font-size:25px;"">
<li class="nav-item">
<a class="nav-link" href="{{url_for('logout')}}"><b>Logout</b></a>
</li>
<li class="nav-item">
<a class="nav-link" href="{{url_for('home')}}"><b>Home</b></a>
</li>
</ul>
<br>
<b><h3>@{{username}}</h3></b>
{{message}}
<form action="{{url_for('results')}}" method="post">
<br><br>
<div class="form-group">
<input class="form-control" placeholder="Search isbn here..." name="isbn">
</div>
<div class="form-group">
<button class="btn btn-primary"> Search </button>
</div>
<br>
<br>
<div class="form-group">
<input class="form-control" placeholder="Search title here..." name="title">
</div>
<div class="form-group">
<button class="btn btn-primary"> Search </button>
</div>
<br>
<br>
<div class="form-group">
<input class="form-control" placeholder="Search author here..." name="author">
</div>
<div>
<button class="btn btn-primary"> Search </button>
</div>
</form>
{% endblock %}