mirror of
https://github.com/gabehf/BudgetBuddy.git
synced 2026-03-10 16:00:35 -07:00
Add files via upload
Settings page, contact us page, about us page
This commit is contained in:
parent
87b444b283
commit
1a02167db7
17 changed files with 295 additions and 0 deletions
51
settings/contact.html
Normal file
51
settings/contact.html
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
<!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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue