allpawcare-website/public/forms/meetgreetrequest.html
2023-12-15 10:30:18 -05:00

239 lines
7.9 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
</head>
<body>
<header>
<div class="px-3 py-2 bg-dark text-white">
<div class="container">
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
<a href="/" class="d-flex align-items-center my-2 my-lg-0 me-lg-auto text-white text-decoration-none">
<svg class="bi me-2" width="40" height="32" role="img" aria-label="Bootstrap"><use xlink:href="#bootstrap"></use></svg>
</a>
<ul class="nav col-12 col-lg-auto my-2 justify-content-center my-md-0 text-small">
<li>
<a href="FAQ.html" class="nav-link text-white">
<svg class="bi d-block mx-auto mb-1" width="24" height="24">
<use xlink:href="#home"></use>
</svg>
FAQ
</a>
</li>
<li>
<a href="about_me.html" class="nav-link text-white">
<svg class="bi d-block mx-auto mb-1" width="24" height="24">
<use xlink:href="#home"></use>
</svg>
about me
</a>
</li>
<li>
<a href="contact_me.html" class="nav-link text-white">
<svg class="bi d-block mx-auto mb-1" width="24" height="24">
<use xlink:href="#home"></use>
</svg>
contact me
</a>
</li>
<li>
<a href="services.html" class="nav-link text-white">
<svg class="bi d-block mx-auto mb-1" width="24" height="24">
<use xlink:href="#home"></use>
</svg>
services
</a>
</li>
</ul>
</div>
</div>
</div>
</header>
<main>
<div class="container pt-5">
<div class="rounded border b-5">
<form>
<h1 class="text-success text-center my-4">Meet & greet</h1>
<div class="d-flex flex-row justify-content-center px-4">
<div class="input-group mx-2">
<span class="input-group-text">Pet name(s)</span>
<input class="form-control" type="text"
placeholder="Tabby, Curly" name="client-pets" id="client-pets" required>
</div>
<div class="input-group mx-2">
<span class="input-group-text">Name</span>
<input class="form-control" type="text"
placeholder="Kasey" name="client-name" id="client-name" required>
</div>
</div>
<div class="d-flex flex-row justify-content-center input-group m-2">
<span class="input-group-text">Visit type</span>
<input class="btn-check" type="radio"
name="visit-type" id="visit-type-walk" required>
<label class="btn btn-primary" for="visit-type-walk">
Walk
</label>
<input class="btn-check" type="radio"
name="visit-type" id="visit-type-dropin">
<label class="btn btn-primary" for="visit-type-dropin">
Drop-in
</label>
<input class="btn-check" type="radio"
name="visit-type" id="visit-type-sitting">
<label class="btn btn-primary" for="visit-type-sitting">
House sitting
</label>
</div>
<div class="d-flex flex-row justify-content-center m-2">
<div class="col-4 pe-1">
<div class="input-group">
<span class="input-group-text">Date</span>
<input type="date" id="date"
name="meet-greet-date" class="form-control"
placeholder="mm/dd/yyyy" value="" required>
</div>
</div>
<div class="col-4 ps-1">
<div class="input-group">
<span class="input-group-text" id="time">Time</span>
<input type="time" id="meet-greet-time" class="form-control"
min="09:00" max="16:00" value="09:00" required>
</div>
</div>
</div>
<div class="d-flex flex-row justify-content-center mx-4 mb-2">
<div class="input-group">
<span class="input-group-text">Contact</span>
<input class="btn-check" type="radio"
name="contact-type" id="email" required>
<label class="btn btn-primary" for="email">
Email
</label>
<input class="btn-check" type="radio"
name="contact-type" id="phone">
<label class="btn btn-primary" for="phone">
Phone
</label>
<input type="text" class="form-control" required>
</div>
</div>
<div class="d-flex flex-row justify-content-center mx-4 mb-2">
<span class="input-group-text">Additional notes</span>
<textarea class="form-control" rows="5" for="notes" id="notes">
</textarea>
</div>
<div class="row m-2">
<button class="btn btn-primary" type="submit"
action="http://allpawcare.com/" method="post">
Book it
</button>
</div>
</form>
</div>
</div>
</main>
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
<p class="col-md-4 mb-0 text-muted">
© 2023 Andrew Bryant
</p>
<a href="/" class="col-md-4 d-flex align-items-center justify-content-center mb-3 mb-md-0 me-md-auto link-dark text-decoration-none">
<svg class="bi me-2" width="40" height="32">
<use xlink:href="#bootstrap"></use>
</svg>
</a>
<ul class="nav col-md-4 justify-content-end">
<li>
<a href="FAQ.html" class="nav-link text-white">
<svg class="bi d-block mx-auto mb-1" width="24" height="24">
<use xlink:href="#home"></use>
</svg>
FAQ
</a>
</li>
<li>
<a href="about_me.html" class="nav-link text-white">
<svg class="bi d-block mx-auto mb-1" width="24" height="24">
<use xlink:href="#home"></use>
</svg>
about me
</a>
</li>
<li>
<a href="contact_me.html" class="nav-link text-white">
<svg class="bi d-block mx-auto mb-1" width="24" height="24">
<use xlink:href="#home"></use>
</svg>
contact me
</a>
</li>
<li>
<a href="services.html" class="nav-link text-white">
<svg class="bi d-block mx-auto mb-1" width="24" height="24">
<use xlink:href="#home"></use>
</svg>
services
</a>
</li>
</ul>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2" crossorigin="anonymous"></script>
</body>
</html>