Skip to content

Commit

Permalink
Contact form structure complete.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackjcoop committed Jan 25, 2024
1 parent b373099 commit 4ee01e3
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,32 +63,29 @@ <h4 class="mb-3">Contact Form</h4>
<label for="firstName">First name</label>
<input type="text" class="form-control" id="firstName" placeholder="" value="" required>
<div class="invalid-feedback">
Valid first name is required.
Please provide a first name.
</div>
</div>
<div class="col-md-6 mb-3">
<label for="lastName">Last name</label>
<input type="text" class="form-control" id="lastName" placeholder="" value="" required>
<div class="invalid-feedback">
Valid last name is required.
Please provide a last name.
</div>
</div>
</div>

<div class="mb-3">
<label for="email">Email <span class="text-muted">(Optional)</span></label>
<input type="text" class="form-control" id="username" placeholder="Username" required>
<label for="email">Email <span class="text-muted">(Required)</span></label>
<input type="text" class="form-control" id="email" placeholder="your@email.com" required>
<div class="invalid-feedback" style="width: 100%;">
Your username is required.
Please provide your email.
</div>
</div>

<div class="mb-3">
<label for="test">Address</label>
<input type="text" class="form-control" id="test" placeholder="1234 Main St" required>
<div class="invalid-feedback">
Please enter your shipping address.
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea class="form-control" id="message" rows="3" placeholder="Hello! I look forward to hearing what you have to say."></textarea>
</div>

<hr class="mb-4">
Expand Down

0 comments on commit 4ee01e3

Please sign in to comment.