removed required
This commit is contained in:
parent
89d0535af8
commit
2c8467bcca
|
@ -1,4 +1,4 @@
|
|||
<!-- 2024-14-02 Stacy created this file and added php code -->
|
||||
<!-- 02-14-2024 Stacy created this file and added contact-us-action.php -->
|
||||
|
||||
|
||||
<!DOCTYPE html>
|
||||
|
@ -837,13 +837,20 @@
|
|||
<form action="contact-us-action.php" method="post">
|
||||
<span class="ec-contact-wrap">
|
||||
<label>First Name*</label>
|
||||
<input type="text" name="firstname" placeholder="Enter your first name"
|
||||
required />
|
||||
<!-- <input type="text" name="firstname" placeholder="Enter your first name"
|
||||
required /> -->
|
||||
<!-- 02-15-2024 Stacy removed required -->
|
||||
<input type="text" name="firstname" placeholder="Enter your first name"/>
|
||||
<!-- 02-15-2024 Stacy removed required -->
|
||||
</span>
|
||||
<span class="ec-contact-wrap">
|
||||
<!-- -->
|
||||
<label>Last Name*</label>
|
||||
<input type="text" name="lastname" placeholder="Enter your last name"
|
||||
required />
|
||||
<!-- <input type="text" name="lastname" placeholder="Enter your last name"
|
||||
required /> -->
|
||||
<!-- 02-15-2024 Stacy removed required -->
|
||||
<input type="text" name="lastname" placeholder="Enter your last name"/>
|
||||
<!-- 02-15-2024 Stacy removed required -->
|
||||
</span>
|
||||
<span class="ec-contact-wrap">
|
||||
<label>Email*</label>
|
||||
|
@ -852,13 +859,16 @@
|
|||
</span>
|
||||
<span class="ec-contact-wrap">
|
||||
<label>Phone Number*</label>
|
||||
<input type="text" name="phonenumber" placeholder="Enter your phone number"
|
||||
required />
|
||||
<!-- <input type="text" name="phonenumber" placeholder="Enter your phone number"
|
||||
required /> -->
|
||||
<!-- 02-15-2024 Stacy removed required -->
|
||||
<input type="text" name="phonenumber" placeholder="Enter your phone number"/>
|
||||
<!-- 02-15-2024 Stacy removed required -->
|
||||
</span>
|
||||
<span class="ec-contact-wrap">
|
||||
<label>Comments/Questions*</label>
|
||||
<textarea name="message"
|
||||
placeholder="Please leave your comments here.."></textarea>
|
||||
placeholder="Please leave your comments here.." required ></textarea>
|
||||
</span>
|
||||
<span class="ec-contact-wrap ec-recaptcha">
|
||||
<span class="g-recaptcha"
|
||||
|
|
Loading…
Reference in New Issue