-
Notifications
You must be signed in to change notification settings - Fork 0
/
boolean.html
41 lines (35 loc) · 1.55 KB
/
boolean.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../../../favicon.ico">
<title>Signin Template for Bootstrap</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body class="text-center">
<div class="jumbotron container-fluid">
<h1>Information Retrieval</h1>
<h4 class="lead">Assignment # 1</h4>
</div>
<container>
<form action="/boolean" method="POST">
<img class="mb-4" src="http://www.ics.uci.edu/~djp3/classes/2009_01_02_INF141/Misc/wordle.jpg" alt=""
height="200">
<h1 class="h3 mb-3 font-weight-normal"> Boolean Query ..</h1>
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text" id="basic-addon1">QUERRY</span>
</div>
<input type="text" class="form-control" placeholder="Enter your querry here" name="query">
</div>
<button type="submit" btn btn-primary btn-sm">Submit</button>
<p class="mt-5 mb-3 text-muted">© 2019 Information Retrieval </p>
</form>
</container>
</body>
</html>