-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathadopt.php
87 lines (82 loc) · 3.68 KB
/
adopt.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
<?php include('header.php'); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adopt - Pawfect Pawtrails</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="adopt-styles.css">
<link rel="icon" type="icon/x-icon" href="resources/Pawfect Pawtrails-4.png">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<style>
*::selection {
background-color: #3d3d3d;
color: whitesmoke;
}
</style>
</head>
<body>
<main style="background-color: rgb(251, 245, 235);">
<section class="adopt-section">
<h1>Adopt a Pet</h1>
<p>Give a loving home to a furry companion and change a life forever.</p>
<div class="adopt-steps">
<div class="step">
<img src="resources/browse.png" alt="Browse Icon">
<h3>Browse Pets</h3>
<p>Search for your perfect match by browsing our available pets.</p>
<a href="browse-pets.php" class="btn">Browse Pets</a>
</div>
<div class="step">
<img src="resources/apply.png" alt="Apply Icon">
<h3>Apply to Adopt</h3>
<p>Complete our online application form to begin the adoption process.</p>
<a href="#adoption-form" class="btn">Apply Now</a>
</div>
<div class="step">
<h3>Meet and Greet</h3>
<p>Schedule a meet-and-greet to ensure a perfect match with your new furry friend.</p>
<a href="info/adoption-process.php" class="btn">Learn More</a>
</div>
</div>
<div id="adoption-form">
<h2>Adoption Application</h2>
<form action="backend/process_adoption.php" method="post">
<div class="form-group">
<label for="name">Full Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" name="phone" required>
</div>
<div class="form-group">
<label for="address">Address</label>
<textarea id="address" name="address" required></textarea>
</div>
<div class="form-group">
<label for="pet-type">Type of Pet</label>
<select id="pet-type" name="pet-type" required>
<option value="">Select a pet type</option>
<option value="dog">Dog</option>
<option value="cat">Cat</option>
</select>
</div>
<div class="form-group">
<label for="reason">Reason for Adoption</label>
<textarea id="reason" name="reason" required></textarea>
</div>
<button type="submit" class="btn">Submit Application</button>
</form>
</div>
</section>
</main>
<script src="main.js"></script>
</body>
</html>
<?php include('footer.php'); ?>