Skip to content

Commit

Permalink
added modal
Browse files Browse the repository at this point in the history
  • Loading branch information
BrattishRat384 committed May 31, 2024
1 parent 9627770 commit 5cddc0e
Showing 1 changed file with 40 additions and 11 deletions.
51 changes: 40 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -383,27 +383,56 @@ <h2 class="text-center mb-4">Contact info</h2>

<!-- Modal Start -->
<!-- Modal -->
<div class="modal fade" id="enroll" tabindex="-1" aria-labelledby="enroll" aria-hidden="true">
<div
class="modal fade"
id="enroll"
tabindex="-1"
aria-labelledby="enrollLabel"
aria-hidden="true"
>
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1 class="modal-title fs-5" id="enroll">Modal title</h1>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
<h5 class="modal-title" id="enrollLabel">Enrollment</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<p class="lead">Fill out this form and we will get back to you</p>
<form>
<div class="mb-3">
<label for="first-name" class="col-form-lable">
First Name:
<label for="first-name" class="col-form-label">
First Name:
</label>
<input type="text" class="form-control" id="first-name">
<input type="text" class="form-control" id="first-name" />
</div>
<div class="mb-3">
<label for="last-name" class="col-form-label">Last Name:</label>
<input type="text" class="form-control" id="last-name" />
</div>
<div class="mb-3">
<label for="email" class="col-form-label">Email:</label>
<input type="email" class="form-control" id="email" />
</div>
<div class="mb-3">
<label for="phone" class="col-form-label">Phone:</label>
<input type="tel" class="form-control" id="phone" />
</div>
</form>
</div>
<div class="modal-body">
<div class="p lead">Fill out this form and we will get back to you</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
<button
type="button"
class="btn btn-secondary"
data-bs-dismiss="modal"
>
Close
</button>
<button type="button" class="btn btn-primary">Submit</button>
</div>
</div>
</div>
Expand Down

0 comments on commit 5cddc0e

Please sign in to comment.