You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
2.2 KiB

<!DOCTYPE html>
<html lang="en" data-bs-theme="light">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contact Us</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
</head>
<body>
<div class="container overflow-auto">
<!-- Page Header -->
<header>
<div class="container h-100">
<div class="row h-100 align-items-center">
<div class="mt-4 col-12 text-center">
<h1 class="fw-light">Contact Us</h1>
<p class="lead">Budget Buddy</p>
</div>
</div>
</div>
</header>
<div class="container h-100">
<div class="row h-100 align-items-center">
<div class="mt-4 col-12 text-center">
<img class="img-fluid col-4" src="images/contact.jpeg" alt="contact">
</div>
</div>
</div>
<h4 class="lead mt-5 mb-4">Reach out to us with any questions, concerns or feedback, and a member of our team will gladly assist you:</h4>
<form>
<div class="mb-3">
<label for="emailAddress" class="form-label">Your Email address</label>
<input type="email" class="form-control" id="emailAddress" placeholder="name@example.com">
</div>
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label">Message</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3" placeholder="Write your message here..."></textarea>
</div>
<div class="mb-3">
<button type="submit" class="btn btn-primary mb-5" id="feedback">Submit</button>
</div>
</form>
<script src="js/settings.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
</body>
</html>