-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
36 lines (34 loc) · 1.13 KB
/
index.php
File metadata and controls
36 lines (34 loc) · 1.13 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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="dist/css/bootstrap.css">
<link rel="stylesheet" href="dist/css/bootstrap-glyphicons.css">
<script type="text/javascript" src="dist/css/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="dist/css/bootstrap.min.js"></script>
<style type="text/css">
body {
background-image: url(background.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
html { overflow-y: hidden; }
</style>
<title>Trail Track</title>
</head>
<body>
<form method="get" action="search.php">
<table width="100%" height="100%" border="0">
<tr align="center">
<td align="center">
<input name="searchValue" type="text" id="searchValue" class="form-control" placeholder="Enter a Query"/>
<input name="searchTagValue" type="text" id="searchTagValue" class="form-control" placeholder="Enter a Query Tag"/>
<br>
<input name="SearchButton" type="submit" value="Track the Trail" class="btn btn-primary"/></td>
</tr>
</table>
</form>
<?php
?>
</body>
</html>