-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathadoptions.php
102 lines (100 loc) · 3.23 KB
/
adoptions.php
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="pic/favicon.ico">
<meta charset="utf-8"></meta>
<meta content="IE=edge" http-equiv="X-UA-Compatible"></meta>
<meta content="width=device-width, initial-scale=1" name="viewport"></meta>
<!-- Important meta tags according to getbootstrap.com -->
<meta content="" name="This is the adoptions page for Forever Furries Adoption repository"></meta>
<meta content="" name="CS361 Project B"></meta>
<title>
Forever Furries - Adoptions
</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="css/bootstrap.css"></link>
<!-- Bootstrap theme -->
<link rel="stylesheet" href="css/bootstrap-theme.css"></link>
<script src = 'select_animal_type.js'></script>
</head>
<body role="document">
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<!-- Fixed navbar -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<!-- Container for the navigation bar items -->
<div class="container">
<div class="navbar-header">
<!-- Upper left page name button -->
<a class="navbar-brand" href="home.html">
<img src="pic/foreverfurries.gif" height="25px" widht="150px"></img>
</a>
</div>
<!-- Navigation bar menu items -->
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
::before
<li>
<a href="home.html">
Home
</a>
</li>
<li class="active">
<a href="adoptions.php">
Adoptions
</a>
</li>
<li>
<a href="volunteers.html">
Volunteers
</a>
</li>
<li>
<a href="donations.html">
Donations
</a>
</li>
</ul>
</div>
<!-- /.nav-collapse -->
</div>
</nav>
<br><br><br><br> <!-- Properly aligns the showcase container -->
<div class="container theme-showcase" role="main">
<!-- This class creates a gray block for large text on the page -->
<div class="jumbotron">
<h1>
Pets Available for Adoption
</h1>
<p>
To aid you in finding your new pet, please use the filter options below to narrow down your search.
<div style="text-align: center">
<h4>
<a>
<button onclick="animalDB_ajaxCall('cat')">Search Felines</button>
<img class="img-thumbnail" alt="Missing Pet" src="pic/catlogo.gif" style="float: center; width: 200px; height: 200px;" ></img>
</a>
<a>
<img class="img-thumbnail" alt="Missing Pet" src="pic/doglogo.gif" style="float: center; width: 200px; height: 200px;" ></img>
<button onclick="animalDB_ajaxCall('dog')">Search Canines</button>
</a>
</h4>
</div>
</div>
</div>
<div id="pettable">
</div>
</body>
<footer class="footer">
<div class="container">
<br /><br />
<div style="text-align:center">
<img src="pic/footerlogo.gif" height="70" width="150"></img>
<p class="text-muted">©<br /></p>
</div>
<br /><br />
</div>
</footer>
</html>